├── DialougFiles ├── RenaDoesntWantToEat.tres ├── TestDialouge.tres ├── TimmyIntro.tres ├── TimmyWantsFood.tres ├── TimyThanks.tres └── TimyThanksAgain.tres ├── LICENSE ├── README.md ├── Scenes ├── Actors │ ├── NPCs │ │ ├── LittleRena.tscn │ │ └── LittleTimy.tscn │ └── Player │ │ ├── Control.tscn │ │ ├── Player.gd │ │ └── Player.tscn └── Maps │ ├── TestWorld.tscn │ └── Tilesets │ └── Floors1.tscn ├── Scripts ├── Control.gd ├── DialougeClass.gd └── Quets │ ├── LittleRena.gd │ └── LittleTimy.gd ├── Textures ├── burger-512.png ├── burger-512.png.import ├── burger-512.xcf └── tiles │ ├── barrel.png │ ├── barrel.png.import │ ├── brackish.png │ ├── brackish.png.import │ ├── bridges.png │ ├── bridges.png.import │ ├── buckets.png │ ├── buckets.png.import │ ├── cabinets.png │ ├── cabinets.png.import │ ├── castle_lightsources.png │ ├── castle_lightsources.png.import │ ├── castle_outside.png │ ├── castle_outside.png.import │ ├── castlefloors.png │ ├── castlefloors.png.import │ ├── castlefloors_outside.png │ ├── castlefloors_outside.png.import │ ├── castlewalls.png │ ├── castlewalls.png.import │ ├── cement.png │ ├── cement.png.import │ ├── cementstair.png │ ├── cementstair.png.import │ ├── chests.png │ ├── chests.png.import │ ├── country.png │ ├── country.png.import │ ├── cup.png │ ├── cup.png.import │ ├── dirt.png │ ├── dirt.png.import │ ├── dirt2.png │ ├── dirt2.png.import │ ├── dungeon.png │ ├── dungeon.png.import │ ├── grass.png │ ├── grass.png.import │ ├── grassalt.png │ ├── grassalt.png.import │ ├── hole.png │ ├── hole.png.import │ ├── holek.png │ ├── holek.png.import │ ├── holemid.png │ ├── holemid.png.import │ ├── house.png │ ├── house.png.import │ ├── inside.png │ ├── inside.png.import │ ├── kitchen.png │ ├── kitchen.png.import │ ├── lava.png │ ├── lava.png.import │ ├── lavarock.png │ ├── lavarock.png.import │ ├── mountains.png │ ├── mountains.png.import │ ├── rock.png │ ├── rock.png.import │ ├── signs.png │ ├── signs.png.import │ ├── stairs.png │ ├── stairs.png.import │ ├── treetop.png │ ├── treetop.png.import │ ├── trunk.png │ ├── trunk.png.import │ ├── victoria.png │ ├── victoria.png.import │ ├── water.png │ ├── water.png.import │ ├── waterfall.png │ ├── waterfall.png.import │ ├── watergrass.png │ └── watergrass.png.import ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot /DialougFiles/RenaDoesntWantToEat.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "I'm not hungry anymore", "Here, Take this mister!", "[center]You got a [img]res://Textures/burger-512.png[/img] Hamburger![/center]" ] 8 | Names = [ "Girl In Pink", "Girl In Pink", "." ] 9 | -------------------------------------------------------------------------------- /DialougFiles/TestDialouge.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "Hello there, Young Paladin", "Are You here to seek an Epic Quest?", "Then you have come to the right place", "Follow the Light at the end of the tunnel", "and you'll find your epic quest", "In a far, far land away from here" ] 8 | Names = [ "Speaker #1", "Speaker #2", "Speaker #1", "Speaker #2", "Speaker #1", "Speaker #1 & 2" ] 9 | -------------------------------------------------------------------------------- /DialougFiles/TimmyIntro.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "Hm? Oh hi!", "I'm [color=red]Timmy![/color]", "And I'm huunnngrry" ] 8 | Names = [ "?????", "Timmy", "Timmy" ] 9 | -------------------------------------------------------------------------------- /DialougFiles/TimmyWantsFood.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "Do you have some food, mister?" ] 8 | Names = [ "Timmy" ] 9 | -------------------------------------------------------------------------------- /DialougFiles/TimyThanks.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "Yay!", "Thanks Mister!", "*nom nom*" ] 8 | Names = [ "Timmy", "Timmy", "Timmy" ] 9 | -------------------------------------------------------------------------------- /DialougFiles/TimyThanksAgain.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/DialougeClass.gd" type="Script" id=1] 4 | 5 | [resource] 6 | script = ExtResource( 1 ) 7 | Strings = [ "Thanks Again, Mister!" ] 8 | Names = [ "Timmy" ] 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 MaxIsJoe 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GodotDialogueResourceSystem 2 | A Dialouge system for Godot that uses .tres files instead of JSON files for in-game dialogue. 3 | 4 | 5 | ### Why did I create this? 6 | For the longest time i haven't been fond of the way everyone handles in-game dialogue with Godot, I didn't like the JSON approach and wanted something similar to what I used to work with in Unity, so, I have decided to create this and make it public in-case someone else like me wanted to approach dialogue in Godot withot using JSON like 99% of all tutorials that teach new comers 7 | 8 | ### How Does It Work? 9 | The system uses .tres files to hold dialogue that can be loaded to display dialogue 10 | 11 | .tres files are "Resources" and Resources are basiclly base classes for all resource types, serving primarily as data containers, here they hold only two Arrays, a "Strings" and "Names" arrays. 12 | 13 | "Strings" hold all dialogue while "Names" hold all names of NPCs who are speaking at that moment 14 | 15 | To create a dialogue Resource you just simply go to the file manager inside of godot then right click and click on "New Resource" then choose "DialogueResource", this will create a .tres file where you can edit ALL of your strings and names inside the editor without using an external program or messy syntaxes like what JSON has 16 | 17 | ### Main Functions 18 | 19 | `LoadDialouge(DiaTres)` : Loads the dialouge that will be used, takes in a path to the file 20 | #### Example : 21 | ```gd 22 | ###Control.gd### 23 | func LoadDialouge(DiaTres): 24 | Dialoug = load(DiaTres) 25 | ###NPC.gd### 26 | var Dia_RenaIntro = "res://DialougFiles/RenaSaysHi.tres" 27 | 28 | func _on_Area2D_body_entered(body): 29 | if(body.is_in_group("Player")): 30 | body.DiaUI.LoadDialouge(Dia_RenaIntro) 31 | ``` 32 | 33 | ---------------------------- 34 | 35 | `startDialouge()` : Starts the dialogue UI and displays the first string on screen 36 | #### Example : 37 | ```gd 38 | func _on_Area2D_body_entered(body): 39 | if(body.is_in_group("Player")): 40 | if(VarDia_GotTheHamburger == false): 41 | body.DiaUI.LoadDialouge(Dia_RenaIsNotHungry) #Loads the Dialouge that will be used 42 | body.DiaUI.startDialouge() #Displays the Dialouge that was loaded from the previous line 43 | ``` 44 | 45 | ----------------------------- 46 | 47 | `updateDialouge()` : Checks for player Input to display the next string in the Strings array that was loaded, It runs in `_process(delta)` so it doesn't need to be called from elsewhere. 48 | 49 | ### Can I Improve on this? 50 | You can pretty much do anything with this, add choices, music, whatever, just try to credit me if you're going to use this in your project one day :) and I also welcome any new pull requests that adds new stuff to this repo as well 51 | -------------------------------------------------------------------------------- /Scenes/Actors/NPCs/LittleRena.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=4 format=2] 2 | 3 | [ext_resource path="res://icon.png" type="Texture" id=1] 4 | [ext_resource path="res://Scripts/Quets/LittleRena.gd" type="Script" id=2] 5 | 6 | [sub_resource type="RectangleShape2D" id=1] 7 | extents = Vector2( 34.0004, 35.9999 ) 8 | 9 | [node name="LittleRena" type="Sprite"] 10 | modulate = Color( 0.917647, 0.0392157, 0.717647, 1 ) 11 | texture = ExtResource( 1 ) 12 | script = ExtResource( 2 ) 13 | 14 | [node name="Area2D" type="Area2D" parent="."] 15 | 16 | [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] 17 | shape = SubResource( 1 ) 18 | [connection signal="body_entered" from="Area2D" to="." method="_on_Area2D_body_entered"] 19 | -------------------------------------------------------------------------------- /Scenes/Actors/NPCs/LittleTimy.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=4 format=2] 2 | 3 | [ext_resource path="res://icon.png" type="Texture" id=1] 4 | [ext_resource path="res://Scripts/Quets/LittleTimy.gd" type="Script" id=2] 5 | 6 | [sub_resource type="RectangleShape2D" id=1] 7 | extents = Vector2( 39.7632, 43.1854 ) 8 | 9 | [node name="LittleTimy" type="Sprite"] 10 | modulate = Color( 0.870588, 0.0862745, 0.0862745, 1 ) 11 | texture = ExtResource( 1 ) 12 | script = ExtResource( 2 ) 13 | 14 | [node name="Area2D" type="Area2D" parent="."] 15 | 16 | [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] 17 | shape = SubResource( 1 ) 18 | [connection signal="body_shape_entered" from="Area2D" to="." method="_on_Area2D_body_shape_entered"] 19 | -------------------------------------------------------------------------------- /Scenes/Actors/Player/Control.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=2] 2 | 3 | [ext_resource path="res://Scripts/Control.gd" type="Script" id=1] 4 | 5 | [node name="DiaUI" type="Control"] 6 | visible = false 7 | light_mask = 131072 8 | anchor_right = 1.0 9 | anchor_bottom = 1.0 10 | script = ExtResource( 1 ) 11 | 12 | [node name="DiaHolder" type="ColorRect" parent="."] 13 | margin_left = 39.0 14 | margin_top = 475.0 15 | margin_right = 977.0 16 | margin_bottom = 581.0 17 | color = Color( 0.101961, 0.0862745, 0.0862745, 0.54902 ) 18 | 19 | [node name="DiaText" type="RichTextLabel" parent="DiaHolder"] 20 | margin_top = 12.0 21 | margin_right = 937.0 22 | margin_bottom = 93.0 23 | bbcode_enabled = true 24 | 25 | [node name="NamesUI" type="ColorRect" parent="DiaHolder"] 26 | margin_left = 1.0 27 | margin_top = -23.0 28 | margin_right = 151.0 29 | margin_bottom = 1.0 30 | color = Color( 0.0509804, 0.0392157, 0.0392157, 0.470588 ) 31 | 32 | [node name="NamesLabel" type="Label" parent="DiaHolder/NamesUI"] 33 | margin_top = 5.0 34 | margin_right = 149.0 35 | margin_bottom = 23.0 36 | -------------------------------------------------------------------------------- /Scenes/Actors/Player/Player.gd: -------------------------------------------------------------------------------- 1 | extends KinematicBody2D 2 | 3 | onready var DiaUI = $Camera2D/DiaUI 4 | 5 | const SPEED = 350 6 | 7 | var canmove = true 8 | 9 | var hasfood = false 10 | 11 | func _physics_process(delta): 12 | if canmove == false: #Can the player move? 13 | return 14 | var velocity = Vector2() 15 | if(Input.is_action_pressed("ui_up")): 16 | velocity.y -= 1 17 | if(Input.is_action_pressed("ui_down")): 18 | velocity.y += 1 19 | if(Input.is_action_pressed("ui_right")): 20 | velocity.x += 1 21 | if(Input.is_action_pressed("ui_left")): 22 | velocity.x -= 1 23 | velocity = velocity.normalized() * SPEED 24 | move_and_slide(velocity) 25 | 26 | func _on_DiaUI_AllowMovement(): 27 | canmove = true 28 | 29 | 30 | func _on_DiaUI_StopMovement(): 31 | canmove = false 32 | -------------------------------------------------------------------------------- /Scenes/Actors/Player/Player.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=5 format=2] 2 | 3 | [ext_resource path="res://Scenes/Actors/Player/Player.gd" type="Script" id=1] 4 | [ext_resource path="res://icon.png" type="Texture" id=2] 5 | [ext_resource path="res://Scenes/Actors/Player/Control.tscn" type="PackedScene" id=3] 6 | 7 | [sub_resource type="RectangleShape2D" id=1] 8 | extents = Vector2( 24.2796, 24.5989 ) 9 | 10 | [node name="Player" type="KinematicBody2D" groups=[ 11 | "Player", 12 | ]] 13 | z_index = 2 14 | script = ExtResource( 1 ) 15 | 16 | [node name="Sprite" type="Sprite" parent="."] 17 | texture = ExtResource( 2 ) 18 | 19 | [node name="CollisionShape2D" type="CollisionShape2D" parent="."] 20 | shape = SubResource( 1 ) 21 | 22 | [node name="Camera2D" type="Camera2D" parent="."] 23 | current = true 24 | limit_smoothed = true 25 | smoothing_enabled = true 26 | smoothing_speed = 15.0 27 | drag_margin_left = 0.0 28 | drag_margin_top = 0.0 29 | drag_margin_right = 0.0 30 | drag_margin_bottom = 0.0 31 | editor_draw_limits = true 32 | editor_draw_drag_margin = true 33 | 34 | [node name="DiaUI" parent="Camera2D" instance=ExtResource( 3 )] 35 | margin_left = -500.989 36 | margin_top = -286.999 37 | margin_right = -500.989 38 | margin_bottom = -286.999 39 | [connection signal="AllowMovement" from="Camera2D/DiaUI" to="." method="_on_DiaUI_AllowMovement"] 40 | [connection signal="StopMovement" from="Camera2D/DiaUI" to="." method="_on_DiaUI_StopMovement"] 41 | -------------------------------------------------------------------------------- /Scenes/Maps/TestWorld.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=6 format=2] 2 | 3 | [ext_resource path="res://Scenes/Actors/Player/Player.tscn" type="PackedScene" id=1] 4 | [ext_resource path="res://Scenes/Actors/NPCs/LittleTimy.tscn" type="PackedScene" id=2] 5 | [ext_resource path="res://Scenes/Actors/NPCs/LittleRena.tscn" type="PackedScene" id=3] 6 | [ext_resource path="res://Scenes/Maps/Tilesets/Floors1.tscn" type="PackedScene" id=4] 7 | [ext_resource path="res://Textures/tiles/barrel.png" type="Texture" id=5] 8 | 9 | [node name="TestWorld" type="Node2D"] 10 | 11 | [node name="Player" parent="." instance=ExtResource( 1 )] 12 | position = Vector2( 452.521, 406.928 ) 13 | 14 | [node name="Interactables" type="Node" parent="."] 15 | 16 | [node name="LittleTimy" parent="Interactables" instance=ExtResource( 2 )] 17 | position = Vector2( 221.579, 274.336 ) 18 | 19 | [node name="LittleRena" parent="Interactables" instance=ExtResource( 3 )] 20 | position = Vector2( 787.988, 599.173 ) 21 | 22 | [node name="Tilesets" type="Node2D" parent="."] 23 | z_index = -1 24 | 25 | [node name="Floors" parent="Tilesets" instance=ExtResource( 4 )] 26 | tile_data = PoolIntArray( 0, 0, 131072, 1, 0, 131073, 2, 0, 131073, 3, 0, 131073, 4, 0, 131073, 5, 0, 131073, 6, 0, 131073, 7, 0, 131073, 8, 0, 131073, 9, 0, 131073, 10, 0, 131073, 11, 0, 131073, 12, 0, 131073, 13, 0, 131073, 14, 0, 131073, 15, 0, 131073, 16, 0, 131073, 17, 0, 131073, 18, 0, 131073, 19, 0, 131073, 20, 0, 131073, 21, 0, 131073, 22, 0, 131073, 23, 0, 131073, 24, 0, 131073, 25, 0, 131073, 26, 0, 131073, 27, 0, 131073, 28, 0, 131073, 29, 0, 131073, 30, 0, 131073, 31, 0, 131073, 32, 0, 131074, 65536, 0, 196608, 65537, 0, 196609, 65538, 0, 196609, 65539, 0, 196609, 65540, 0, 196609, 65541, 0, 196609, 65542, 0, 196609, 65543, 0, 196609, 65544, 0, 196609, 65545, 0, 196609, 65546, 0, 196609, 65547, 0, 196609, 65548, 0, 196609, 65549, 0, 196609, 65550, 0, 196609, 65551, 0, 196609, 65552, 0, 196609, 65553, 0, 196609, 65554, 0, 196609, 65555, 0, 196609, 65556, 0, 196609, 65557, 0, 196609, 65558, 0, 196609, 65559, 0, 196609, 65560, 0, 196609, 65561, 0, 196609, 65562, 0, 196609, 65563, 0, 196609, 65564, 0, 196609, 65565, 0, 196609, 65566, 0, 196609, 65567, 0, 196609, 65568, 0, 196610, 131072, 0, 196608, 131073, 0, 196609, 131074, 0, 196609, 131075, 0, 196609, 131076, 0, 196609, 131077, 0, 196609, 131078, 0, 196609, 131079, 0, 196609, 131080, 0, 196609, 131081, 0, 196609, 131082, 0, 196609, 131083, 0, 196609, 131084, 0, 196609, 131085, 0, 196609, 131086, 0, 196609, 131087, 0, 196609, 131088, 0, 196609, 131089, 0, 196609, 131090, 0, 196609, 131091, 0, 196609, 131092, 0, 196609, 131093, 0, 196609, 131094, 0, 196609, 131095, 0, 196609, 131096, 0, 196609, 131097, 0, 196609, 131098, 0, 196609, 131099, 0, 196609, 131100, 0, 196609, 131101, 0, 196609, 131102, 0, 196609, 131103, 0, 196609, 131104, 0, 196610, 196608, 0, 196608, 196609, 0, 196609, 196610, 0, 196609, 196611, 0, 196609, 196612, 0, 196609, 196613, 0, 196609, 196614, 0, 196609, 196615, 0, 196609, 196616, 0, 196609, 196617, 0, 196609, 196618, 0, 196609, 196619, 0, 196609, 196620, 0, 196609, 196621, 0, 196609, 196622, 0, 196609, 196623, 0, 196609, 196624, 0, 196609, 196625, 0, 196609, 196626, 0, 196609, 196627, 0, 196609, 196628, 0, 196609, 196629, 0, 196609, 196630, 0, 196609, 196631, 0, 196609, 196632, 0, 196609, 196633, 0, 196609, 196634, 0, 196609, 196635, 0, 196609, 196636, 0, 196609, 196637, 0, 196609, 196638, 0, 196609, 196639, 0, 196609, 196640, 0, 196610, 262144, 0, 196608, 262145, 0, 196609, 262146, 0, 196609, 262147, 0, 196609, 262148, 0, 196609, 262149, 0, 196609, 262150, 0, 196609, 262151, 0, 196609, 262152, 0, 196609, 262153, 0, 196609, 262154, 0, 196609, 262155, 0, 196609, 262156, 0, 196609, 262157, 0, 196609, 262158, 0, 196609, 262159, 0, 196609, 262160, 0, 196609, 262161, 0, 196609, 262162, 0, 196609, 262163, 0, 196609, 262164, 0, 196609, 262165, 0, 196609, 262166, 0, 196609, 262167, 0, 196609, 262168, 0, 196609, 262169, 0, 196609, 262170, 0, 196609, 262171, 0, 196609, 262172, 0, 196609, 262173, 0, 196609, 262174, 0, 196609, 262175, 0, 196609, 262176, 0, 196610, 327680, 0, 196608, 327681, 0, 196609, 327682, 0, 196609, 327683, 0, 196609, 327684, 0, 196609, 327685, 0, 196609, 327686, 0, 196609, 327687, 0, 196609, 327688, 0, 196609, 327689, 0, 196609, 327690, 0, 196609, 327691, 0, 196609, 327692, 0, 196609, 327693, 0, 196609, 327694, 0, 196609, 327695, 0, 196609, 327696, 0, 196609, 327697, 0, 196609, 327698, 0, 196609, 327699, 0, 196609, 327700, 0, 196609, 327701, 0, 196609, 327702, 0, 196609, 327703, 0, 196609, 327704, 0, 196609, 327705, 0, 196609, 327706, 0, 196609, 327707, 0, 196609, 327708, 0, 196609, 327709, 0, 196609, 327710, 0, 196609, 327711, 0, 196609, 327712, 0, 196610, 458749, 0, 131072, 458750, 0, 131073, 458751, 0, 131073, 393216, 0, 196609, 393217, 0, 196609, 393218, 0, 196609, 393219, 0, 196609, 393220, 0, 196609, 393221, 0, 196609, 393222, 0, 196609, 393223, 0, 196609, 393224, 0, 196609, 393225, 0, 196609, 393226, 0, 196609, 393227, 0, 196609, 393228, 0, 196609, 393229, 0, 196609, 393230, 0, 196609, 393231, 0, 196609, 393232, 0, 196609, 393233, 0, 196609, 393234, 0, 196609, 393235, 0, 196609, 393236, 0, 196609, 393237, 0, 196609, 393238, 0, 196609, 393239, 0, 196609, 393240, 0, 196609, 393241, 0, 196609, 393242, 0, 196609, 393243, 0, 196609, 393244, 0, 196609, 393245, 0, 196609, 393246, 0, 196609, 393247, 0, 196609, 393248, 0, 196610, 524285, 0, 196608, 524286, 0, 196609, 524287, 0, 196609, 458752, 0, 196609, 458753, 0, 196609, 458754, 0, 196609, 458755, 0, 196609, 458756, 0, 196609, 458757, 0, 196609, 458758, 0, 196609, 458759, 0, 196609, 458760, 0, 196609, 458761, 0, 196609, 458762, 0, 196609, 458763, 0, 196609, 458764, 0, 196609, 458765, 0, 196609, 458766, 0, 196609, 458767, 0, 196609, 458768, 0, 196609, 458769, 0, 196609, 458770, 0, 196609, 458771, 0, 196609, 458772, 0, 196609, 458773, 0, 196609, 458774, 0, 196609, 458775, 0, 196609, 458776, 0, 196609, 458777, 0, 196609, 458778, 0, 196609, 458779, 0, 196609, 458780, 0, 196609, 458781, 0, 196609, 458782, 0, 196609, 458783, 0, 196609, 458784, 0, 196610, 589821, 0, 196608, 589822, 0, 196609, 589823, 0, 196609, 524288, 0, 196609, 524289, 0, 196609, 524290, 0, 196609, 524291, 0, 196609, 524292, 0, 196609, 524293, 0, 196609, 524294, 0, 196609, 524295, 0, 196609, 524296, 0, 196609, 524297, 0, 196609, 524298, 0, 196609, 524299, 0, 196609, 524300, 0, 196609, 524301, 0, 196609, 524302, 0, 196609, 524303, 0, 196609, 524304, 0, 196609, 524305, 0, 196609, 524306, 0, 196609, 524307, 0, 196609, 524308, 0, 196609, 524309, 0, 196609, 524310, 0, 196609, 524311, 0, 196609, 524312, 0, 196609, 524313, 0, 196609, 524314, 0, 196609, 524315, 0, 196609, 524316, 0, 196609, 524317, 0, 196609, 524318, 0, 196609, 524319, 0, 196609, 524320, 0, 196610, 655357, 0, 196608, 655358, 0, 196609, 655359, 0, 196609, 589824, 0, 196609, 589825, 0, 196609, 589826, 0, 196609, 589827, 0, 196609, 589828, 0, 196609, 589829, 0, 196609, 589830, 0, 196609, 589831, 0, 196609, 589832, 0, 196609, 589833, 0, 196609, 589834, 0, 196609, 589835, 0, 196609, 589836, 0, 196609, 589837, 0, 196609, 589838, 0, 196609, 589839, 0, 196609, 589840, 0, 196609, 589841, 0, 196609, 589842, 0, 196609, 589843, 0, 196609, 589844, 0, 196609, 589845, 0, 196609, 589846, 0, 196609, 589847, 0, 196609, 589848, 0, 196609, 589849, 0, 196609, 589850, 0, 196609, 589851, 0, 196609, 589852, 0, 196609, 589853, 0, 196609, 589854, 0, 196609, 589855, 0, 196609, 589856, 0, 196610, 720893, 0, 196608, 720894, 0, 196609, 720895, 0, 196609, 655360, 0, 196609, 655361, 0, 196609, 655362, 0, 196609, 655363, 0, 196609, 655364, 0, 196609, 655365, 0, 196609, 655366, 0, 196609, 655367, 0, 196609, 655368, 0, 196609, 655369, 0, 196609, 655370, 0, 196609, 655371, 0, 196609, 655372, 0, 196609, 655373, 0, 196609, 655374, 0, 196609, 655375, 0, 196609, 655376, 0, 196609, 655377, 0, 196609, 655378, 0, 196609, 655379, 0, 196609, 655380, 0, 196609, 655381, 0, 196609, 655382, 0, 196609, 655383, 0, 196609, 655384, 0, 196609, 655385, 0, 196609, 655386, 0, 196609, 655387, 0, 196609, 655388, 0, 196609, 655389, 0, 196609, 655390, 0, 196609, 655391, 0, 196609, 655392, 0, 196610, 786429, 0, 196608, 786430, 0, 196609, 786431, 0, 196609, 720896, 0, 196609, 720897, 0, 196609, 720898, 0, 196609, 720899, 0, 196609, 720900, 0, 196609, 720901, 0, 196609, 720902, 0, 196609, 720903, 0, 196609, 720904, 0, 196609, 720905, 0, 196609, 720906, 0, 196609, 720907, 0, 196609, 720908, 0, 196609, 720909, 0, 196609, 720910, 0, 196609, 720911, 0, 196609, 720912, 0, 196609, 720913, 0, 196609, 720914, 0, 196609, 720915, 0, 196609, 720916, 0, 196609, 720917, 0, 196609, 720918, 0, 196609, 720919, 0, 196609, 720920, 0, 196609, 720921, 0, 196609, 720922, 0, 196609, 720923, 0, 196609, 720924, 0, 196609, 720925, 0, 196609, 720926, 0, 196609, 720927, 0, 196609, 720928, 0, 196610, 851965, 0, 196608, 851966, 0, 196609, 851967, 0, 196609, 786432, 0, 196609, 786433, 0, 196609, 786434, 0, 196609, 786435, 0, 196609, 786436, 0, 196609, 786437, 0, 196609, 786438, 0, 196609, 786439, 0, 196609, 786440, 0, 196609, 786441, 0, 196609, 786442, 0, 196609, 786443, 0, 196609, 786444, 0, 196609, 786445, 0, 196609, 786446, 0, 196609, 786447, 0, 196609, 786448, 0, 196609, 786449, 0, 196609, 786450, 0, 196609, 786451, 0, 196609, 786452, 0, 196609, 786453, 0, 196609, 786454, 0, 196609, 786455, 0, 196609, 786456, 0, 196609, 786457, 0, 196609, 786458, 0, 196609, 786459, 0, 196609, 786460, 0, 196609, 786461, 0, 196609, 786462, 0, 196609, 786463, 0, 196609, 786464, 0, 196610, 917501, 0, 196608, 917502, 0, 196609, 917503, 0, 196609, 851968, 0, 196609, 851969, 0, 196609, 851970, 0, 196609, 851971, 0, 196609, 851972, 0, 196609, 851973, 0, 196609, 851974, 0, 196609, 851975, 0, 196609, 851976, 0, 196609, 851977, 0, 196609, 851978, 0, 196609, 851979, 0, 196609, 851980, 0, 196609, 851981, 0, 196609, 851982, 0, 196609, 851983, 0, 196609, 851984, 0, 196609, 851985, 0, 196609, 851986, 0, 196609, 851987, 0, 196609, 851988, 0, 196609, 851989, 0, 196609, 851990, 0, 196609, 851991, 0, 196609, 851992, 0, 196609, 851993, 0, 196609, 851994, 0, 196609, 851995, 0, 196609, 851996, 0, 196609, 851997, 0, 196609, 851998, 0, 196609, 851999, 0, 196609, 852000, 0, 196610, 983037, 0, 196608, 983038, 0, 196609, 983039, 0, 196609, 917504, 0, 196609, 917505, 0, 196609, 917506, 0, 196609, 917507, 0, 196609, 917508, 0, 196609, 917509, 0, 196609, 917510, 0, 196609, 917511, 0, 196609, 917512, 0, 196609, 917513, 0, 196609, 917514, 0, 196609, 917515, 0, 196609, 917516, 0, 196609, 917517, 0, 196609, 917518, 0, 196609, 917519, 0, 196609, 917520, 0, 196609, 917521, 0, 196609, 917522, 0, 196609, 917523, 0, 196609, 917524, 0, 196609, 917525, 0, 196609, 917526, 0, 196609, 917527, 0, 196609, 917528, 0, 196609, 917529, 0, 196609, 917530, 0, 196609, 917531, 0, 196609, 917532, 0, 196609, 917533, 0, 196609, 917534, 0, 196609, 917535, 0, 196609, 917536, 0, 196610, 1048573, 0, 262144, 1048574, 0, 262145, 1048575, 0, 262145, 983040, 0, 196609, 983041, 0, 196609, 983042, 0, 196609, 983043, 0, 196609, 983044, 0, 196609, 983045, 0, 196609, 983046, 0, 196609, 983047, 0, 196609, 983048, 0, 196609, 983049, 0, 196609, 983050, 0, 196609, 983051, 0, 196609, 983052, 0, 196609, 983053, 0, 196609, 983054, 0, 196609, 983055, 0, 196609, 983056, 0, 196609, 983057, 0, 196609, 983058, 0, 196609, 983059, 0, 196609, 983060, 0, 196609, 983061, 0, 196609, 983062, 0, 196609, 983063, 0, 196609, 983064, 0, 196609, 983065, 0, 196609, 983066, 0, 196609, 983067, 0, 196609, 983068, 0, 196609, 983069, 0, 196609, 983070, 0, 196609, 983071, 0, 196609, 983072, 0, 196610, 1048576, 0, 196608, 1048577, 0, 196609, 1048578, 0, 196609, 1048579, 0, 196609, 1048580, 0, 196609, 1048581, 0, 196609, 1048582, 0, 196609, 1048583, 0, 196609, 1048584, 0, 196609, 1048585, 0, 196609, 1048586, 0, 196609, 1048587, 0, 196609, 1048588, 0, 196609, 1048589, 0, 196609, 1048590, 0, 196609, 1048591, 0, 196609, 1048592, 0, 196609, 1048593, 0, 196609, 1048594, 0, 196609, 1048595, 0, 196609, 1048596, 0, 196609, 1048597, 0, 196609, 1048598, 0, 196609, 1048599, 0, 196609, 1048600, 0, 196609, 1048601, 0, 196609, 1048602, 0, 196609, 1048603, 0, 196609, 1048604, 0, 196609, 1048605, 0, 196609, 1048606, 0, 196609, 1048607, 0, 196609, 1048608, 0, 196610, 1114112, 0, 196608, 1114113, 0, 196609, 1114114, 0, 196609, 1114115, 0, 196609, 1114116, 0, 196609, 1114117, 0, 196609, 1114118, 0, 196609, 1114119, 0, 196609, 1114120, 0, 196609, 1114121, 0, 196609, 1114122, 0, 196609, 1114123, 0, 196609, 1114124, 0, 196609, 1114125, 0, 196609, 1114126, 0, 196609, 1114127, 0, 196609, 1114128, 0, 196609, 1114129, 0, 196609, 1114130, 0, 196609, 1114131, 0, 196609, 1114132, 0, 196609, 1114133, 0, 196609, 1114134, 0, 196609, 1114135, 0, 196609, 1114136, 0, 196609, 1114137, 0, 196609, 1114138, 0, 196609, 1114139, 0, 196609, 1114140, 0, 196609, 1114141, 0, 196609, 1114142, 0, 196609, 1114143, 0, 196609, 1114144, 0, 196610, 1179648, 0, 196608, 1179649, 0, 196609, 1179650, 0, 196609, 1179651, 0, 196609, 1179652, 0, 196609, 1179653, 0, 196609, 1179654, 0, 196609, 1179655, 0, 196609, 1179656, 0, 196609, 1179657, 0, 196609, 1179658, 0, 196609, 1179659, 0, 196609, 1179660, 0, 196609, 1179661, 0, 196609, 1179662, 0, 196609, 1179663, 0, 196609, 1179664, 0, 196609, 1179665, 0, 196609, 1179666, 0, 196609, 1179667, 0, 196609, 1179668, 0, 196609, 1179669, 0, 196609, 1179670, 0, 196609, 1179671, 0, 196609, 1179672, 0, 196609, 1179673, 0, 196609, 1179674, 0, 196609, 1179675, 0, 196609, 1179676, 0, 196609, 1179677, 0, 196609, 1179678, 0, 196609, 1179679, 0, 196609, 1179680, 0, 196610, 1245184, 0, 196608, 1245185, 0, 196609, 1245186, 0, 196609, 1245187, 0, 196609, 1245188, 0, 196609, 1245189, 0, 196609, 1245190, 0, 196609, 1245191, 0, 196609, 1245192, 0, 196609, 1245193, 0, 196609, 1245194, 0, 196609, 1245195, 0, 196609, 1245196, 0, 196609, 1245197, 0, 196609, 1245198, 0, 196609, 1245199, 0, 196609, 1245200, 0, 196609, 1245201, 0, 196609, 1245202, 0, 196609, 1245203, 0, 196609, 1245204, 0, 196609, 1245205, 0, 196609, 1245206, 0, 196609, 1245207, 0, 196609, 1245208, 0, 196609, 1245209, 0, 196609, 1245210, 0, 196609, 1245211, 0, 196609, 1245212, 0, 196609, 1245213, 0, 196609, 1245214, 0, 196609, 1245215, 0, 196609, 1245216, 0, 196610, 1310720, 0, 196608, 1310721, 0, 196609, 1310722, 0, 196609, 1310723, 0, 196609, 1310724, 0, 196609, 1310725, 0, 196609, 1310726, 0, 196609, 1310727, 0, 196609, 1310728, 0, 196609, 1310729, 0, 196609, 1310730, 0, 196609, 1310731, 0, 196609, 1310732, 0, 196609, 1310733, 0, 196609, 1310734, 0, 196609, 1310735, 0, 196609, 1310736, 0, 196609, 1310737, 0, 196609, 1310738, 0, 196609, 1310739, 0, 196609, 1310740, 0, 196609, 1310741, 0, 196609, 1310742, 0, 196609, 1310743, 0, 196609, 1310744, 0, 196609, 1310745, 0, 196609, 1310746, 0, 196609, 1310747, 0, 196609, 1310748, 0, 196609, 1310749, 0, 196609, 1310750, 0, 196609, 1310751, 0, 196609, 1310752, 0, 196610, 1376256, 0, 196608, 1376257, 0, 196609, 1376258, 0, 196609, 1376259, 0, 196609, 1376260, 0, 196609, 1376261, 0, 196609, 1376262, 0, 196609, 1376263, 0, 196609, 1376264, 0, 196609, 1376265, 0, 196609, 1376266, 0, 196609, 1376267, 0, 196609, 1376268, 0, 196609, 1376269, 0, 196609, 1376270, 0, 196609, 1376271, 0, 196609, 1376272, 0, 196609, 1376273, 0, 196609, 1376274, 0, 196609, 1376275, 0, 196609, 1376276, 0, 196609, 1376277, 0, 196609, 1376278, 0, 196609, 1376279, 0, 196609, 1376280, 0, 196609, 1376281, 0, 196609, 1376282, 0, 196609, 1376283, 0, 196609, 1376284, 0, 196609, 1376285, 0, 196609, 1376286, 0, 196609, 1376287, 0, 196609, 1376288, 0, 196610, 1441792, 0, 196608, 1441793, 0, 196609, 1441794, 0, 196609, 1441795, 0, 196609, 1441796, 0, 196609, 1441797, 0, 196609, 1441798, 0, 196609, 1441799, 0, 196609, 1441800, 0, 196609, 1441801, 0, 196609, 1441802, 0, 196609, 1441803, 0, 196609, 1441804, 0, 196609, 1441805, 0, 196609, 1441806, 0, 196609, 1441807, 0, 196609, 1441808, 0, 196609, 1441809, 0, 196609, 1441810, 0, 196609, 1441811, 0, 196609, 1441812, 0, 196609, 1441813, 0, 196609, 1441814, 0, 196609, 1441815, 0, 196609, 1441816, 0, 196609, 1441817, 0, 196609, 1441818, 0, 196609, 1441819, 0, 196609, 1441820, 0, 196609, 1441821, 0, 196609, 1441822, 0, 196609, 1441823, 0, 196609, 1441824, 0, 196610, 1507328, 0, 196608, 1507329, 0, 196609, 1507330, 0, 196609, 1507331, 0, 196609, 1507332, 0, 196609, 1507333, 0, 196609, 1507334, 0, 196609, 1507335, 0, 196609, 1507336, 0, 196609, 1507337, 0, 196609, 1507338, 0, 196609, 1507339, 0, 196609, 1507340, 0, 196609, 1507341, 0, 196609, 1507342, 0, 196609, 1507343, 0, 196609, 1507344, 0, 196609, 1507345, 0, 196609, 1507346, 0, 196609, 1507347, 0, 196609, 1507348, 0, 196609, 1507349, 0, 196609, 1507350, 0, 196609, 1507351, 0, 196609, 1507352, 0, 196609, 1507353, 0, 196609, 1507354, 0, 196609, 1507355, 0, 196609, 1507356, 0, 196609, 1507357, 0, 196609, 1507358, 0, 196609, 1507359, 0, 196609, 1507360, 0, 196610, 1572864, 0, 262144, 1572865, 0, 262145, 1572866, 0, 262145, 1572867, 0, 262145, 1572868, 0, 262145, 1572869, 0, 262145, 1572870, 0, 262145, 1572871, 0, 262145, 1572872, 0, 262145, 1572873, 0, 262145, 1572874, 0, 262145, 1572875, 0, 262145, 1572876, 0, 262145, 1572877, 0, 262145, 1572878, 0, 262145, 1572879, 0, 262145, 1572880, 0, 262145, 1572881, 0, 262145, 1572882, 0, 262145, 1572883, 0, 262145, 1572884, 0, 262145, 1572885, 0, 262145, 1572886, 0, 262145, 1572887, 0, 262145, 1572888, 0, 262145, 1572889, 0, 262145, 1572890, 0, 262145, 1572891, 0, 262145, 1572892, 0, 262145, 1572893, 0, 262145, 1572894, 0, 262145, 1572895, 0, 262145, 1572896, 0, 262146 ) 27 | 28 | [node name="Floors2" parent="Tilesets" instance=ExtResource( 4 )] 29 | tile_data = PoolIntArray( -1114126, 2, 0, -1114125, 2, 1, -1114124, 2, 1, -1114123, 2, 1, -1114122, 2, 1, -1114121, 2, 1, -1114120, 2, 1, -1114119, 2, 1, -1114118, 2, 1, -1114117, 2, 2, -1179632, 2, 0, -1179631, 2, 1, -1179630, 2, 1, -1179629, 2, 1, -1179628, 2, 1, -1179627, 2, 1, -1179626, 2, 1, -1179625, 2, 1, -1179624, 2, 1, -1179623, 2, 1, -1179622, 2, 1, -1179621, 2, 1, -1179620, 2, 1, -1179619, 2, 1, -1179618, 2, 1, -1179617, 2, 1, -1179616, 2, 1, -1179615, 2, 1, -1179614, 2, 1, -1179613, 2, 1, -1179612, 2, 2, -1048593, 2, 0, -1048592, 2, 1, -1048591, 2, 1, -1048590, 2, 65537, -1048589, 2, 65537, -1048588, 2, 65537, -1048587, 2, 65537, -1048586, 2, 65537, -1048585, 2, 65537, -1048584, 2, 65537, -1048583, 2, 65537, -1048582, 2, 65537, -1048581, 2, 65537, -1048580, 2, 1, -1048579, 2, 1, -1048578, 2, 1, -1048577, 2, 1, -1114112, 2, 1, -1114111, 2, 1, -1114110, 2, 1, -1114109, 2, 1, -1114108, 2, 1, -1114107, 2, 1, -1114106, 2, 1, -1114105, 2, 1, -1114104, 2, 1, -1114103, 2, 1, -1114102, 2, 1, -1114101, 2, 1, -1114100, 2, 1, -1114099, 2, 1, -1114098, 2, 1, -1114097, 2, 1, -1114096, 2, 65537, -1114095, 2, 65537, -1114094, 2, 65537, -1114093, 2, 65537, -1114092, 2, 65537, -1114091, 2, 65537, -1114090, 2, 65537, -1114089, 2, 65537, -1114088, 2, 65537, -1114087, 2, 65537, -1114086, 2, 65537, -1114085, 2, 65537, -1114084, 2, 65537, -1114083, 2, 65537, -1114082, 2, 65537, -1114081, 2, 65537, -1114080, 2, 65537, -1114079, 2, 65537, -1114078, 2, 65537, -1114077, 2, 65537, -1114076, 2, 65537, -1114075, 2, 1, -1114074, 2, 1, -1114073, 2, 1, -1114072, 2, 1, -1114071, 2, 1, -1114070, 2, 1, -1114069, 2, 1, -1114068, 2, 1, -1114067, 2, 1, -1114066, 2, 1, -1114065, 2, 2, -983059, 2, 0, -983058, 2, 1, -983057, 2, 65537, -983056, 2, 65537, -983055, 2, 65537, -983054, 2, 65537, -983053, 2, 65537, -983052, 2, 65537, -983051, 2, 65537, -983050, 2, 65537, -983049, 2, 65537, -983048, 2, 65537, -983047, 2, 65537, -983046, 2, 65537, -983045, 2, 65537, -983044, 2, 65537, -983043, 2, 65537, -983042, 2, 65537, -983041, 2, 65537, -1048576, 2, 65537, -1048575, 2, 65537, -1048574, 2, 65537, -1048573, 2, 65537, -1048572, 2, 65537, -1048571, 2, 65537, -1048570, 2, 65537, -1048569, 2, 65537, -1048568, 2, 65537, -1048567, 2, 65537, -1048566, 2, 65537, -1048565, 2, 65537, -1048564, 2, 65537, -1048563, 2, 65537, -1048562, 2, 65537, -1048561, 2, 65537, -1048560, 2, 65537, -1048559, 2, 65537, -1048558, 2, 65537, -1048557, 2, 65537, -1048556, 2, 65537, -1048555, 2, 65537, -1048554, 2, 65537, -1048553, 2, 65537, -1048552, 2, 65537, -1048551, 2, 65537, -1048550, 2, 65537, -1048549, 2, 65537, -1048548, 2, 65537, -1048547, 2, 65537, -1048546, 2, 65537, -1048545, 2, 65537, -1048544, 2, 65537, -1048543, 2, 65537, -1048542, 2, 65537, -1048541, 2, 65537, -1048540, 2, 65537, -1048539, 2, 65537, -1048538, 2, 65537, -1048537, 2, 65537, -1048536, 2, 65537, -1048535, 2, 65537, -1048534, 2, 65537, -1048533, 2, 65537, -1048532, 2, 65537, -1048531, 2, 65537, -1048530, 2, 65537, -1048529, 2, 65537, -1048528, 2, 1, -1048527, 2, 1, -1048526, 2, 1, -1048525, 2, 1, -1048524, 2, 1, -1048523, 2, 1, -1048522, 2, 1, -1048521, 2, 2, -917524, 2, 0, -917523, 2, 65537, -917522, 2, 65537, -917521, 2, 65537, -917520, 2, 65537, -917519, 2, 65537, -917518, 2, 65537, -917517, 2, 65537, -917516, 2, 65537, -917515, 2, 65537, -917514, 2, 65537, -917513, 2, 65537, -917512, 2, 65537, -917511, 2, 65537, -917510, 2, 65537, -917509, 2, 65537, -917508, 2, 65537, -917507, 2, 65537, -917506, 2, 65537, -917505, 2, 65537, -983040, 2, 65537, -983039, 2, 65537, -983038, 2, 65537, -983037, 2, 65537, -983036, 2, 65537, -983035, 2, 65537, -983034, 2, 65537, -983033, 2, 65537, -983032, 2, 65537, -983031, 2, 65537, -983030, 2, 65537, -983029, 2, 65537, -983028, 2, 65537, -983027, 2, 65537, -983026, 2, 65537, -983025, 2, 65537, -983024, 2, 65537, -983023, 2, 65537, -983022, 2, 65537, -983021, 2, 65537, -983020, 2, 65537, -983019, 2, 65537, -983018, 2, 65537, -983017, 2, 65537, -983016, 2, 65537, -983015, 2, 65537, -983014, 2, 65537, -983013, 2, 65537, -983012, 2, 65537, -983011, 2, 65537, -983010, 2, 65537, -983009, 2, 65537, -983008, 2, 65537, -983007, 2, 65537, -983006, 2, 65537, -983005, 2, 65537, -983004, 2, 65537, -983003, 2, 65537, -983002, 2, 65537, -983001, 2, 65537, -983000, 2, 65537, -982999, 2, 65537, -982998, 2, 65537, -982997, 2, 65537, -982996, 2, 65537, -982995, 2, 65537, -982994, 2, 65537, -982993, 2, 65537, -982992, 2, 65537, -982991, 2, 65537, -982990, 2, 65537, -982989, 2, 65537, -982988, 2, 65537, -982987, 2, 65537, -982986, 2, 65537, -982985, 2, 65537, -982984, 2, 1, -982983, 2, 1, -982982, 2, 1, -982981, 2, 2, -851989, 2, 0, -851988, 2, 65537, -851987, 2, 65537, -851986, 2, 65537, -851985, 2, 65537, -851984, 2, 65537, -851983, 2, 65537, -851982, 2, 65537, -851981, 2, 65537, -851980, 2, 65537, -851979, 2, 65537, -851978, 2, 65537, -851977, 2, 65537, -851976, 2, 65537, -851975, 2, 65537, -851974, 2, 65537, -851973, 2, 65537, -851972, 2, 65537, -851971, 2, 65537, -851970, 2, 65537, -851969, 2, 65537, -917504, 2, 65537, -917503, 2, 65537, -917502, 2, 65537, -917501, 2, 65537, -917500, 2, 65537, -917499, 2, 65537, -917498, 2, 65537, -917497, 2, 65537, -917496, 2, 65537, -917495, 2, 65537, -917494, 2, 65537, -917493, 2, 65537, -917492, 2, 65537, -917491, 2, 65537, -917490, 2, 65537, -917489, 2, 65537, -917488, 2, 65537, -917487, 2, 65537, -917486, 2, 65537, -917485, 2, 65537, -917484, 2, 65537, -917483, 2, 65537, -917482, 2, 65537, -917481, 2, 65537, -917480, 2, 65537, -917479, 2, 65537, -917478, 2, 65537, -917477, 2, 65537, -917476, 2, 65537, -917475, 2, 65537, -917474, 2, 65537, -917473, 2, 65537, -917472, 2, 65537, -917471, 2, 65537, -917470, 2, 65537, -917469, 2, 65537, -917468, 2, 65537, -917467, 2, 65537, -917466, 2, 65537, -917465, 2, 65537, -917464, 2, 65537, -917463, 2, 65537, -917462, 2, 65537, -917461, 2, 65537, -917460, 2, 65537, -917459, 2, 65537, -917458, 2, 65537, -917457, 2, 65537, -917456, 2, 65537, -917455, 2, 65537, -917454, 2, 65537, -917453, 2, 65537, -917452, 2, 65537, -917451, 2, 65537, -917450, 2, 65537, -917449, 2, 65537, -917448, 2, 65537, -917447, 2, 65537, -917446, 2, 65537, -917445, 2, 65537, -917444, 2, 1, -917443, 2, 1, -917442, 2, 1, -917441, 2, 2, -786453, 2, 65536, -786452, 2, 65537, -786451, 2, 65537, -786450, 2, 65537, -786449, 2, 65537, -786448, 2, 65537, -786447, 2, 65537, -786446, 2, 65537, -786445, 2, 65537, -786444, 2, 65537, -786443, 2, 65537, -786442, 2, 65537, -786441, 2, 65537, -786440, 2, 65537, -786439, 2, 65537, -786438, 2, 65537, -786437, 2, 65537, -786436, 2, 65537, -786435, 2, 65537, -786434, 2, 65537, -786433, 2, 65537, -851968, 2, 65537, -851967, 2, 65537, -851966, 2, 65537, -851965, 2, 65537, -851964, 2, 65537, -851963, 2, 65537, -851962, 2, 65537, -851961, 2, 65537, -851960, 2, 65537, -851959, 2, 65537, -851958, 2, 65537, -851957, 2, 65537, -851956, 2, 65537, -851955, 2, 65537, -851954, 2, 65537, -851953, 2, 65537, -851952, 2, 65537, -851951, 2, 65537, -851950, 2, 65537, -851949, 2, 65537, -851948, 2, 65537, -851947, 2, 65537, -851946, 2, 65537, -851945, 2, 65537, -851944, 2, 65537, -851943, 2, 65537, -851942, 2, 65537, -851941, 2, 65537, -851940, 2, 65537, -851939, 2, 65537, -851938, 2, 65537, -851937, 2, 65537, -851936, 2, 65537, -851935, 2, 65537, -851934, 2, 65537, -851933, 2, 65537, -851932, 2, 65537, -851931, 2, 65537, -851930, 2, 65537, -851929, 2, 65537, -851928, 2, 65537, -851927, 2, 65537, -851926, 2, 65537, -851925, 2, 65537, -851924, 2, 65537, -851923, 2, 65537, -851922, 2, 65537, -851921, 2, 65537, -851920, 2, 65537, -851919, 2, 65537, -851918, 2, 65537, -851917, 2, 65537, -851916, 2, 65537, -851915, 2, 65537, -851914, 2, 65537, -851913, 2, 65537, -851912, 2, 65537, -851911, 2, 65537, -851910, 2, 65537, -851909, 2, 65537, -851908, 2, 65537, -851907, 2, 65537, -851906, 2, 65537, -851905, 2, 65537, -851904, 2, 1, -851903, 2, 1, -851902, 2, 2, -720918, 2, 0, -720917, 2, 65537, -720916, 2, 65537, -720915, 2, 65537, -720914, 2, 65537, -720913, 2, 65537, -720912, 2, 65537, -720911, 2, 65537, -720910, 2, 65537, -720909, 2, 65537, -720908, 2, 65537, -720907, 2, 65537, -720906, 2, 65537, -720905, 2, 65537, -720904, 2, 65537, -720903, 2, 65537, -720902, 2, 65537, -720901, 2, 65537, -720900, 2, 65537, -720899, 2, 65537, -720898, 2, 65537, -720897, 2, 65537, -786432, 2, 65537, -786431, 2, 65537, -786430, 2, 65537, -786429, 2, 65537, -786428, 2, 65537, -786427, 2, 65537, -786426, 2, 65537, -786425, 2, 65537, -786424, 2, 65537, -786423, 2, 65537, -786422, 2, 65537, -786421, 2, 65537, -786420, 2, 65537, -786419, 2, 65537, -786418, 2, 65537, -786417, 2, 65537, -786416, 2, 65537, -786415, 2, 65537, -786414, 2, 65537, -786413, 2, 65537, -786412, 2, 65537, -786411, 2, 65537, -786410, 2, 65537, -786409, 2, 65537, -786408, 2, 65537, -786407, 2, 65537, -786406, 2, 65537, -786405, 2, 65537, -786404, 2, 65537, -786403, 2, 65537, -786402, 2, 65537, -786401, 2, 65537, -786400, 2, 65537, -786399, 2, 65537, -786398, 2, 65537, -786397, 2, 65537, -786396, 2, 65537, -786395, 2, 65537, -786394, 2, 65537, -786393, 2, 65537, -786392, 2, 65537, -786391, 2, 65537, -786390, 2, 65537, -786389, 2, 65537, -786388, 2, 65537, -786387, 2, 65537, -786386, 2, 65537, -786385, 2, 65537, -786384, 2, 65537, -786383, 2, 65537, -786382, 2, 65537, -786381, 2, 65537, -786380, 2, 65537, -786379, 2, 65537, -786378, 2, 65537, -786377, 2, 65537, -786376, 2, 65537, -786375, 2, 65537, -786374, 2, 65537, -786373, 2, 65537, -786372, 2, 65537, -786371, 2, 65537, -786370, 2, 65537, -786369, 2, 65537, -786368, 2, 65537, -786367, 2, 65537, -786366, 2, 65538, -655382, 2, 65536, -655381, 2, 65537, -655380, 2, 65537, -655379, 2, 65537, -655378, 2, 65537, -655377, 2, 65537, -655376, 2, 65537, -655375, 2, 65537, -655374, 2, 65537, -655373, 2, 65537, -655372, 2, 65537, -655371, 2, 65537, -655370, 2, 65537, -655369, 2, 65537, -655368, 2, 65537, -655367, 2, 65537, -655366, 2, 65537, -655365, 2, 65537, -655364, 2, 65537, -655363, 2, 65537, -655362, 2, 65537, -655361, 2, 65537, -720896, 2, 65537, -720895, 2, 65537, -720894, 2, 65537, -720893, 2, 65537, -720892, 2, 65537, -720891, 2, 65537, -720890, 2, 65537, -720889, 2, 65537, -720888, 2, 65537, -720887, 2, 65537, -720886, 2, 65537, -720885, 2, 65537, -720884, 2, 65537, -720883, 2, 65537, -720882, 2, 65537, -720881, 2, 65537, -720880, 2, 65537, -720879, 2, 65537, -720878, 2, 65537, -720877, 2, 65537, -720876, 2, 65537, -720875, 2, 65537, -720874, 2, 65537, -720873, 2, 65537, -720872, 2, 65537, -720871, 2, 65537, -720870, 2, 65537, -720869, 2, 65537, -720868, 2, 65537, -720867, 2, 65537, -720866, 2, 65537, -720865, 2, 65537, -720864, 2, 65537, -720863, 2, 65537, -720862, 2, 65537, -720861, 2, 65537, -720860, 2, 65537, -720859, 2, 65537, -720858, 2, 65537, -720857, 2, 65537, -720856, 2, 65537, -720855, 2, 65537, -720854, 2, 65537, -720853, 2, 65537, -720852, 2, 65537, -720851, 2, 65537, -720850, 2, 65537, -720849, 2, 65537, -720848, 2, 65537, -720847, 2, 65537, -720846, 2, 65537, -720845, 2, 65537, -720844, 2, 65537, -720843, 2, 65537, -720842, 2, 65537, -720841, 2, 65537, -720840, 2, 65537, -720839, 2, 65537, -720838, 2, 65537, -720837, 2, 65537, -720836, 2, 65537, -720835, 2, 65537, -720834, 2, 65537, -720833, 2, 65537, -720832, 2, 65537, -720831, 2, 65537, -720830, 2, 65538, -589846, 2, 65536, -589845, 2, 65537, -589844, 2, 65537, -589843, 2, 65537, -589842, 2, 65537, -589841, 2, 65537, -589840, 2, 65537, -589839, 2, 65537, -589838, 2, 65537, -589837, 2, 65537, -589836, 2, 65537, -589835, 2, 65537, -589834, 2, 65537, -589833, 2, 65537, -589832, 2, 65537, -589831, 2, 65537, -589830, 2, 65537, -589829, 2, 65537, -589828, 2, 65537, -589827, 2, 65537, -589826, 2, 65537, -589825, 2, 65537, -655360, 2, 65537, -655359, 2, 65537, -655358, 2, 65537, -655357, 2, 65537, -655356, 2, 65537, -655355, 2, 65537, -655354, 2, 65537, -655353, 2, 65537, -655352, 2, 65537, -655351, 2, 65537, -655350, 2, 65537, -655349, 2, 65537, -655348, 2, 65537, -655347, 2, 65537, -655346, 2, 65537, -655345, 2, 65537, -655344, 2, 65537, -655343, 2, 65537, -655342, 2, 65537, -655341, 2, 65537, -655340, 2, 65537, -655339, 2, 65537, -655338, 2, 65537, -655337, 2, 65537, -655336, 2, 65537, -655335, 2, 65537, -655334, 2, 65537, -655333, 2, 65537, -655332, 2, 65537, -655331, 2, 65537, -655330, 2, 65537, -655329, 2, 65537, -655328, 2, 65537, -655327, 2, 65537, -655326, 2, 65537, -655325, 2, 65537, -655324, 2, 65537, -655323, 2, 65537, -655322, 2, 65537, -655321, 2, 65537, -655320, 2, 65537, -655319, 2, 65537, -655318, 2, 65537, -655317, 2, 65537, -655316, 2, 65537, -655315, 2, 65537, -655314, 2, 65537, -655313, 2, 65537, -655312, 2, 65537, -655311, 2, 65537, -655310, 2, 65537, -655309, 2, 65537, -655308, 2, 65537, -655307, 2, 65537, -655306, 2, 65537, -655305, 2, 65537, -655304, 2, 65537, -655303, 2, 65537, -655302, 2, 65537, -655301, 2, 65537, -655300, 2, 65537, -655299, 2, 65537, -655298, 2, 65537, -655297, 2, 65537, -655296, 2, 65537, -655295, 2, 65537, -655294, 2, 65538, -524311, 2, 0, -524310, 2, 65537, -524309, 2, 65537, -524308, 2, 65537, -524307, 2, 65537, -524306, 2, 65537, -524305, 2, 65537, -524304, 2, 65537, -524303, 2, 65537, -524302, 2, 65537, -524301, 2, 65537, -524300, 2, 65537, -524299, 2, 65537, -524298, 2, 65537, -524297, 2, 65537, -524296, 2, 65537, -524295, 2, 65537, -524294, 2, 65537, -524293, 2, 65537, -524292, 2, 65537, -524291, 2, 65537, -524290, 2, 65537, -524289, 2, 65537, -589824, 2, 65537, -589823, 2, 65537, -589822, 2, 65537, -589821, 2, 65537, -589820, 2, 65537, -589819, 2, 65537, -589818, 2, 65537, -589817, 2, 65537, -589816, 2, 65537, -589815, 2, 65537, -589814, 2, 65537, -589813, 2, 65537, -589812, 2, 65537, -589811, 2, 65537, -589810, 2, 65537, -589809, 2, 65537, -589808, 2, 65537, -589807, 2, 65537, -589806, 2, 65537, -589805, 2, 65537, -589804, 2, 65537, -589803, 2, 65537, -589802, 2, 65537, -589801, 2, 65537, -589800, 2, 65537, -589799, 2, 65537, -589798, 2, 65537, -589797, 2, 65537, -589796, 2, 65537, -589795, 2, 65537, -589794, 2, 65537, -589793, 2, 65537, -589792, 2, 65537, -589791, 2, 65537, -589790, 2, 65537, -589789, 2, 65537, -589788, 2, 65537, -589787, 2, 65537, -589786, 2, 65537, -589785, 2, 65537, -589784, 2, 65537, -589783, 2, 65537, -589782, 2, 65537, -589781, 2, 65537, -589780, 2, 65537, -589779, 2, 65537, -589778, 2, 65537, -589777, 2, 65537, -589776, 2, 65537, -589775, 2, 65537, -589774, 2, 65537, -589773, 2, 65537, -589772, 2, 65537, -589771, 2, 65537, -589770, 2, 65537, -589769, 2, 65537, -589768, 2, 65537, -589767, 2, 65537, -589766, 2, 65537, -589765, 2, 65537, -589764, 2, 65537, -589763, 2, 65537, -589762, 2, 65537, -589761, 2, 65537, -589760, 2, 65537, -589759, 2, 65537, -589758, 2, 65538, -458775, 2, 65536, -458774, 2, 65537, -458773, 2, 65537, -458772, 2, 65537, -458771, 2, 65537, -458770, 2, 65537, -458769, 2, 65537, -458768, 2, 65537, -458767, 2, 65537, -458766, 2, 65537, -458765, 2, 65537, -458764, 2, 65537, -458763, 2, 65537, -458762, 2, 65537, -458761, 2, 65537, -458760, 2, 65537, -458759, 2, 65537, -458758, 2, 65537, -458757, 2, 65537, -458756, 2, 65537, -458755, 2, 65537, -458754, 2, 65537, -458753, 2, 65537, -524288, 2, 65537, -524287, 2, 65537, -524286, 2, 65537, -524285, 2, 65537, -524284, 2, 65537, -524283, 2, 65537, -524282, 2, 65537, -524281, 2, 65537, -524280, 2, 65537, -524279, 2, 65537, -524278, 2, 65537, -524277, 2, 65537, -524276, 2, 65537, -524275, 2, 65537, -524274, 2, 65537, -524273, 2, 65537, -524272, 2, 65537, -524271, 2, 65537, -524270, 2, 65537, -524269, 2, 65537, -524268, 2, 65537, -524267, 2, 65537, -524266, 2, 65537, -524265, 2, 65537, -524264, 2, 65537, -524263, 2, 65537, -524262, 2, 65537, -524261, 2, 65537, -524260, 2, 65537, -524259, 2, 65537, -524258, 2, 65537, -524257, 2, 65537, -524256, 2, 65537, -524255, 2, 65537, -524254, 2, 65537, -524253, 2, 65537, -524252, 2, 65537, -524251, 2, 65537, -524250, 2, 65537, -524249, 2, 65537, -524248, 2, 65537, -524247, 2, 65537, -524246, 2, 65537, -524245, 2, 65537, -524244, 2, 65537, -524243, 2, 65537, -524242, 2, 65537, -524241, 2, 65537, -524240, 2, 65537, -524239, 2, 65537, -524238, 2, 65537, -524237, 2, 65537, -524236, 2, 65537, -524235, 2, 65537, -524234, 2, 65537, -524233, 2, 65537, -524232, 2, 65537, -524231, 2, 65537, -524230, 2, 65537, -524229, 2, 65537, -524228, 2, 65537, -524227, 2, 65537, -524226, 2, 65537, -524225, 2, 65537, -524224, 2, 65537, -524223, 2, 65537, -524222, 2, 65538, -393240, 2, 0, -393239, 2, 65537, -393238, 2, 65537, -393237, 2, 65537, -393236, 2, 65537, -393235, 2, 65537, -393234, 2, 65537, -393233, 2, 65537, -393232, 2, 65537, -393231, 2, 65537, -393230, 2, 65537, -393229, 2, 65537, -393228, 2, 65537, -393227, 2, 65537, -393226, 2, 65537, -393225, 2, 65537, -393224, 2, 65537, -393223, 2, 65537, -393222, 2, 65537, -393221, 2, 65537, -393220, 2, 65537, -393219, 2, 65537, -393218, 2, 65537, -393217, 2, 65537, -458752, 2, 65537, -458751, 2, 65537, -458750, 2, 65537, -458749, 2, 65537, -458748, 2, 65537, -458747, 2, 65537, -458746, 2, 65537, -458745, 2, 65537, -458744, 2, 65537, -458743, 2, 65537, -458742, 2, 65537, -458741, 2, 65537, -458740, 2, 65537, -458739, 2, 65537, -458738, 2, 65537, -458737, 2, 65537, -458736, 2, 65537, -458735, 2, 65537, -458734, 2, 65537, -458733, 2, 65537, -458732, 2, 65537, -458731, 2, 65537, -458730, 2, 65537, -458729, 2, 65537, -458728, 2, 65537, -458727, 2, 65537, -458726, 2, 65537, -458725, 2, 65537, -458724, 2, 65537, -458723, 2, 65537, -458722, 2, 65537, -458721, 2, 65537, -458720, 2, 65537, -458719, 2, 65537, -458718, 2, 65537, -458717, 2, 65537, -458716, 2, 65537, -458715, 2, 65537, -458714, 2, 65537, -458713, 2, 65537, -458712, 2, 65537, -458711, 2, 65537, -458710, 2, 65537, -458709, 2, 65537, -458708, 2, 65537, -458707, 2, 65537, -458706, 2, 65537, -458705, 2, 65537, -458704, 2, 65537, -458703, 2, 65537, -458702, 2, 65537, -458701, 2, 65537, -458700, 2, 65537, -458699, 2, 65537, -458698, 2, 65537, -458697, 2, 65537, -458696, 2, 65537, -458695, 2, 65537, -458694, 2, 65537, -458693, 2, 65537, -458692, 2, 65537, -458691, 2, 65537, -458690, 2, 65537, -458689, 2, 65537, -458688, 2, 65537, -458687, 2, 65537, -458686, 2, 65538, -327704, 2, 65536, -327703, 2, 65537, -327702, 2, 65537, -327701, 2, 65537, -327700, 2, 65537, -327699, 2, 65537, -327698, 2, 65537, -327697, 2, 65537, -327696, 2, 65537, -327695, 2, 65537, -327694, 2, 65537, -327693, 2, 65537, -327692, 2, 65537, -327691, 2, 65537, -327690, 2, 65537, -327689, 2, 65537, -327688, 2, 65537, -327687, 2, 65537, -327686, 2, 65537, -327685, 2, 65537, -327684, 2, 65537, -327683, 2, 65537, -327682, 2, 65537, -327681, 2, 65537, -393216, 2, 65537, -393215, 2, 65537, -393214, 2, 65537, -393213, 2, 65537, -393212, 2, 65537, -393211, 2, 65537, -393210, 2, 65537, -393209, 2, 65537, -393208, 2, 65537, -393207, 2, 65537, -393206, 2, 65537, -393205, 2, 65537, -393204, 2, 65537, -393203, 2, 65537, -393202, 2, 65537, -393201, 2, 65537, -393200, 2, 65537, -393199, 2, 65537, -393198, 2, 65537, -393197, 2, 65537, -393196, 2, 65537, -393195, 2, 65537, -393194, 2, 65537, -393193, 2, 65537, -393192, 2, 65537, -393191, 2, 65537, -393190, 2, 65537, -393189, 2, 65537, -393188, 2, 65537, -393187, 2, 65537, -393186, 2, 65537, -393185, 2, 65537, -393184, 2, 65537, -393183, 2, 65537, -393182, 2, 65537, -393181, 2, 65537, -393180, 2, 65537, -393179, 2, 65537, -393178, 2, 65537, -393177, 2, 65537, -393176, 2, 65537, -393175, 2, 65537, -393174, 2, 65537, -393173, 2, 65537, -393172, 2, 65537, -393171, 2, 65537, -393170, 2, 65537, -393169, 2, 65537, -393168, 2, 65537, -393167, 2, 65537, -393166, 2, 65537, -393165, 2, 65537, -393164, 2, 65537, -393163, 2, 65537, -393162, 2, 65537, -393161, 2, 65537, -393160, 2, 65537, -393159, 2, 65537, -393158, 2, 65537, -393157, 2, 65537, -393156, 2, 65537, -393155, 2, 65537, -393154, 2, 65537, -393153, 2, 65537, -393152, 2, 65537, -393151, 2, 65537, -393150, 2, 65538, -262168, 2, 65536, -262167, 2, 65537, -262166, 2, 65537, -262165, 2, 65537, -262164, 2, 65537, -262163, 2, 65537, -262162, 2, 65537, -262161, 2, 65537, -262160, 2, 65537, -262159, 2, 65537, -262158, 2, 65537, -262157, 2, 65537, -262156, 2, 65537, -262155, 2, 65537, -262154, 2, 65537, -262153, 2, 65537, -262152, 2, 65537, -262151, 2, 65537, -262150, 2, 65537, -262149, 2, 65537, -262148, 2, 65537, -262147, 2, 65537, -262146, 2, 65537, -262145, 2, 65537, -327680, 2, 65537, -327679, 2, 65537, -327678, 2, 65537, -327677, 2, 65537, -327676, 2, 65537, -327675, 2, 65537, -327674, 2, 65537, -327673, 2, 65537, -327672, 2, 65537, -327671, 2, 65537, -327670, 2, 65537, -327669, 2, 65537, -327668, 2, 65537, -327667, 2, 65537, -327666, 2, 65537, -327665, 2, 65537, -327664, 2, 65537, -327663, 2, 65537, -327662, 2, 65537, -327661, 2, 65537, -327660, 2, 65537, -327659, 2, 65537, -327658, 2, 65537, -327657, 2, 65537, -327656, 2, 65537, -327655, 2, 65537, -327654, 2, 65537, -327653, 2, 65537, -327652, 2, 65537, -327651, 2, 65537, -327650, 2, 65537, -327649, 2, 65537, -327648, 2, 65537, -327647, 2, 65537, -327646, 2, 65537, -327645, 2, 65537, -327644, 2, 65537, -327643, 2, 65537, -327642, 2, 65537, -327641, 2, 65537, -327640, 2, 65537, -327639, 2, 65537, -327638, 2, 65537, -327637, 2, 65537, -327636, 2, 65537, -327635, 2, 65537, -327634, 2, 65537, -327633, 2, 65537, -327632, 2, 65537, -327631, 2, 65537, -327630, 2, 65537, -327629, 2, 65537, -327628, 2, 65537, -327627, 2, 65537, -327626, 2, 65537, -327625, 2, 65537, -327624, 2, 65537, -327623, 2, 65537, -327622, 2, 65537, -327621, 2, 65537, -327620, 2, 65537, -327619, 2, 65537, -327618, 2, 65537, -327617, 2, 65537, -327616, 2, 65537, -327615, 2, 65537, -327614, 2, 65538, -196632, 2, 65536, -196631, 2, 65537, -196630, 2, 65537, -196629, 2, 65537, -196628, 2, 65537, -196627, 2, 65537, -196626, 2, 65537, -196625, 2, 65537, -196624, 2, 65537, -196623, 2, 65537, -196622, 2, 65537, -196621, 2, 65537, -196620, 2, 65537, -196619, 2, 65537, -196618, 2, 65537, -196617, 2, 65537, -196616, 2, 65537, -196615, 2, 65537, -196614, 2, 65537, -196613, 2, 65537, -196612, 2, 65537, -196611, 2, 65537, -196610, 2, 65537, -196609, 2, 65537, -262144, 2, 65537, -262143, 2, 65537, -262142, 2, 65537, -262141, 2, 65537, -262140, 2, 65537, -262139, 2, 65537, -262138, 2, 65537, -262137, 2, 65537, -262136, 2, 65537, -262135, 2, 65537, -262134, 2, 65537, -262133, 2, 65537, -262132, 2, 65537, -262131, 2, 65537, -262130, 2, 65537, -262129, 2, 65537, -262128, 2, 65537, -262127, 2, 65537, -262126, 2, 65537, -262125, 2, 65537, -262124, 2, 65537, -262123, 2, 65537, -262122, 2, 65537, -262121, 2, 65537, -262120, 2, 65537, -262119, 2, 65537, -262118, 2, 65537, -262117, 2, 65537, -262116, 2, 65537, -262115, 2, 65537, -262114, 2, 65537, -262113, 2, 65537, -262112, 2, 65537, -262111, 2, 65537, -262110, 2, 65537, -262109, 2, 65537, -262108, 2, 65537, -262107, 2, 65537, -262106, 2, 65537, -262105, 2, 65537, -262104, 2, 65537, -262103, 2, 65537, -262102, 2, 65537, -262101, 2, 65537, -262100, 2, 65537, -262099, 2, 65537, -262098, 2, 65537, -262097, 2, 65537, -262096, 2, 65537, -262095, 2, 65537, -262094, 2, 65537, -262093, 2, 65537, -262092, 2, 65537, -262091, 2, 65537, -262090, 2, 65537, -262089, 2, 65537, -262088, 2, 65537, -262087, 2, 65537, -262086, 2, 65537, -262085, 2, 65537, -262084, 2, 65537, -262083, 2, 65537, -262082, 2, 65537, -262081, 2, 65537, -262080, 2, 65537, -262079, 2, 65537, -262078, 2, 65538, -131096, 2, 65536, -131095, 2, 65537, -131094, 2, 65537, -131093, 2, 65537, -131092, 2, 65537, -131091, 2, 65537, -131090, 2, 65537, -131089, 2, 65537, -131088, 2, 65537, -131087, 2, 65537, -131086, 2, 65537, -131085, 2, 65537, -131084, 2, 65537, -131083, 2, 65537, -131082, 2, 65537, -131081, 2, 65537, -131080, 2, 65537, -131079, 2, 65537, -131078, 2, 65537, -131077, 2, 65537, -131076, 2, 65537, -131075, 2, 65537, -131074, 2, 65537, -131073, 2, 65537, -196608, 2, 65537, -196607, 2, 65537, -196606, 2, 65537, -196605, 2, 65537, -196604, 2, 65537, -196603, 2, 65537, -196602, 2, 65537, -196601, 2, 65537, -196600, 2, 65537, -196599, 2, 65537, -196598, 2, 65537, -196597, 2, 65537, -196596, 2, 65537, -196595, 2, 65537, -196594, 2, 65537, -196593, 2, 65537, -196592, 2, 65537, -196591, 2, 65537, -196590, 2, 65537, -196589, 2, 65537, -196588, 2, 65537, -196587, 2, 65537, -196586, 2, 65537, -196585, 2, 65537, -196584, 2, 65537, -196583, 2, 65537, -196582, 2, 65537, -196581, 2, 65537, -196580, 2, 65537, -196579, 2, 65537, -196578, 2, 65537, -196577, 2, 65537, -196576, 2, 65537, -196575, 2, 65537, -196574, 2, 65537, -196573, 2, 65537, -196572, 2, 65537, -196571, 2, 65537, -196570, 2, 65537, -196569, 2, 65537, -196568, 2, 65537, -196567, 2, 65537, -196566, 2, 65537, -196565, 2, 65537, -196564, 2, 65537, -196563, 2, 65537, -196562, 2, 65537, -196561, 2, 65537, -196560, 2, 65537, -196559, 2, 65537, -196558, 2, 65537, -196557, 2, 65537, -196556, 2, 65537, -196555, 2, 65537, -196554, 2, 65537, -196553, 2, 65537, -196552, 2, 65537, -196551, 2, 65537, -196550, 2, 65537, -196549, 2, 65537, -196548, 2, 65537, -196547, 2, 65537, -196546, 2, 65537, -196545, 2, 65537, -196544, 2, 65537, -196543, 2, 65537, -196542, 2, 65537, -196541, 2, 2, -65560, 2, 65536, -65559, 2, 65537, -65558, 2, 65537, -65557, 2, 65537, -65556, 2, 65537, -65555, 2, 65537, -65554, 2, 65537, -65553, 2, 65537, -65552, 2, 65537, -65551, 2, 65537, -65550, 2, 65537, -65549, 2, 65537, -65548, 2, 65537, -65547, 2, 65537, -65546, 2, 65537, -65545, 2, 65537, -65544, 2, 65537, -65543, 2, 65537, -65542, 2, 65537, -65541, 2, 65537, -65540, 2, 65537, -65539, 2, 65537, -65538, 2, 65537, -65537, 2, 65537, -131072, 2, 65537, -131071, 2, 65537, -131070, 2, 65537, -131069, 2, 65537, -131068, 2, 65537, -131067, 2, 65537, -131066, 2, 65537, -131065, 2, 65537, -131064, 2, 65537, -131063, 2, 65537, -131062, 2, 65537, -131061, 2, 65537, -131060, 2, 65537, -131059, 2, 65537, -131058, 2, 65537, -131057, 2, 65537, -131056, 2, 65537, -131055, 2, 65537, -131054, 2, 65537, -131053, 2, 65537, -131052, 2, 65537, -131051, 2, 65537, -131050, 2, 65537, -131049, 2, 65537, -131048, 2, 65537, -131047, 2, 65537, -131046, 2, 65537, -131045, 2, 65537, -131044, 2, 65537, -131043, 2, 65537, -131042, 2, 65537, -131041, 2, 65537, -131040, 2, 65537, -131039, 2, 65537, -131038, 2, 65537, -131037, 2, 65537, -131036, 2, 65537, -131035, 2, 65537, -131034, 2, 65537, -131033, 2, 65537, -131032, 2, 65537, -131031, 2, 65537, -131030, 2, 65537, -131029, 2, 65537, -131028, 2, 65537, -131027, 2, 65537, -131026, 2, 65537, -131025, 2, 65537, -131024, 2, 65537, -131023, 2, 65537, -131022, 2, 65537, -131021, 2, 65537, -131020, 2, 65537, -131019, 2, 65537, -131018, 2, 65537, -131017, 2, 65537, -131016, 2, 65537, -131015, 2, 65537, -131014, 2, 65537, -131013, 2, 65537, -131012, 2, 65537, -131011, 2, 65537, -131010, 2, 65537, -131009, 2, 65537, -131008, 2, 65537, -131007, 2, 65537, -131006, 2, 65537, -131005, 2, 65538, -24, 2, 65536, -23, 2, 65537, -22, 2, 65537, -21, 2, 65537, -20, 2, 65537, -19, 2, 65537, -18, 2, 65537, -17, 2, 65537, -16, 2, 65537, -15, 2, 65537, -14, 2, 65537, -13, 2, 65537, -12, 2, 65537, -11, 2, 65537, -10, 2, 65537, -9, 2, 65537, -8, 2, 65537, -7, 2, 65537, -6, 2, 65537, -5, 2, 65537, -4, 2, 65537, -3, 2, 65537, -2, 2, 65537, -1, 2, 65537, -65536, 2, 65537, -65535, 2, 65537, -65534, 2, 65537, -65533, 2, 65537, -65532, 2, 65537, -65531, 2, 65537, -65530, 2, 65537, -65529, 2, 65537, -65528, 2, 65537, -65527, 2, 65537, -65526, 2, 65537, -65525, 2, 65537, -65524, 2, 65537, -65523, 2, 65537, -65522, 2, 65537, -65521, 2, 65537, -65520, 2, 65537, -65519, 2, 65537, -65518, 2, 65537, -65517, 2, 65537, -65516, 2, 65537, -65515, 2, 65537, -65514, 2, 65537, -65513, 2, 65537, -65512, 2, 65537, -65511, 2, 65537, -65510, 2, 65537, -65509, 2, 65537, -65508, 2, 65537, -65507, 2, 65537, -65506, 2, 65537, -65505, 2, 65537, -65504, 2, 65537, -65503, 2, 65537, -65502, 2, 65537, -65501, 2, 65537, -65500, 2, 65537, -65499, 2, 65537, -65498, 2, 65537, -65497, 2, 65537, -65496, 2, 65537, -65495, 2, 65537, -65494, 2, 65537, -65493, 2, 65537, -65492, 2, 65537, -65491, 2, 65537, -65490, 2, 65537, -65489, 2, 65537, -65488, 2, 65537, -65487, 2, 65537, -65486, 2, 65537, -65485, 2, 65537, -65484, 2, 65537, -65483, 2, 65537, -65482, 2, 65537, -65481, 2, 65537, -65480, 2, 65537, -65479, 2, 65537, -65478, 2, 65537, -65477, 2, 65537, -65476, 2, 65537, -65475, 2, 65537, -65474, 2, 65537, -65473, 2, 65537, -65472, 2, 65537, -65471, 2, 65537, -65470, 2, 65537, -65469, 2, 65538, 65512, 2, 65536, 65513, 2, 65537, 65514, 2, 65537, 65515, 2, 65537, 65516, 2, 65537, 65517, 2, 65537, 65518, 2, 65537, 65519, 2, 65537, 65520, 2, 65537, 65521, 2, 65537, 65522, 2, 65537, 65523, 2, 65537, 65524, 2, 65537, 65525, 2, 65537, 65526, 2, 65537, 65527, 2, 65537, 65528, 2, 65537, 65529, 2, 65537, 65530, 2, 65537, 65531, 2, 65537, 65532, 2, 65537, 65533, 2, 65537, 65534, 2, 65537, 65535, 2, 65537, 0, 2, 65537, 1, 2, 131073, 2, 2, 131073, 3, 2, 131073, 4, 2, 131073, 5, 2, 131073, 6, 2, 131073, 7, 2, 131073, 8, 2, 131073, 9, 2, 131073, 10, 2, 131073, 11, 2, 131073, 12, 2, 131073, 13, 2, 131073, 14, 2, 131073, 15, 2, 131073, 16, 2, 131073, 17, 2, 131073, 18, 2, 131073, 19, 2, 131073, 20, 2, 131073, 21, 2, 131073, 22, 2, 131073, 23, 2, 131073, 24, 2, 131073, 25, 2, 131073, 26, 2, 131073, 27, 2, 131073, 28, 2, 131073, 29, 2, 131073, 30, 2, 131073, 31, 2, 131073, 32, 2, 65537, 33, 2, 65537, 34, 2, 65537, 35, 2, 65537, 36, 2, 65537, 37, 2, 65537, 38, 2, 65537, 39, 2, 65537, 40, 2, 65537, 41, 2, 65537, 42, 2, 65537, 43, 2, 65537, 44, 2, 65537, 45, 2, 65537, 46, 2, 65537, 47, 2, 65537, 48, 2, 65537, 49, 2, 65537, 50, 2, 65537, 51, 2, 65537, 52, 2, 65537, 53, 2, 65537, 54, 2, 65537, 55, 2, 65537, 56, 2, 65537, 57, 2, 65537, 58, 2, 65537, 59, 2, 65537, 60, 2, 65537, 61, 2, 65537, 62, 2, 65537, 63, 2, 65537, 64, 2, 65537, 65, 2, 65537, 66, 2, 65537, 67, 2, 65538, 131048, 2, 65536, 131049, 2, 65537, 131050, 2, 65537, 131051, 2, 65537, 131052, 2, 65537, 131053, 2, 65537, 131054, 2, 65537, 131055, 2, 65537, 131056, 2, 65537, 131057, 2, 65537, 131058, 2, 65537, 131059, 2, 65537, 131060, 2, 65537, 131061, 2, 65537, 131062, 2, 65537, 131063, 2, 65537, 131064, 2, 65537, 131065, 2, 65537, 131066, 2, 65537, 131067, 2, 65537, 131068, 2, 65537, 131069, 2, 65537, 131070, 2, 65537, 131071, 2, 65537, 65536, 2, 65538, 65537, 0, 131072, 65538, 0, 131073, 65539, 0, 131073, 65540, 0, 131073, 65541, 0, 131073, 65542, 0, 131073, 65543, 0, 131073, 65544, 0, 131073, 65545, 0, 131073, 65546, 0, 131073, 65547, 0, 131074, 65548, 1, 0, 65549, 1, 1, 65550, 1, 1, 65551, 1, 1, 65552, 1, 2, 65553, 0, 131072, 65554, 0, 131073, 65555, 0, 131073, 65556, 0, 131073, 65557, 0, 131073, 65558, 0, 131073, 65559, 0, 131073, 65560, 0, 131073, 65561, 0, 131073, 65562, 0, 131073, 65563, 0, 131073, 65564, 0, 131073, 65565, 0, 131073, 65566, 0, 131073, 65567, 0, 131074, 65568, 2, 65536, 65569, 2, 65537, 65570, 2, 65537, 65571, 2, 65537, 65572, 2, 65537, 65573, 2, 65537, 65574, 2, 65537, 65575, 2, 65537, 65576, 2, 65537, 65577, 2, 65537, 65578, 2, 65537, 65579, 2, 65537, 65580, 2, 65537, 65581, 2, 65537, 65582, 2, 65537, 65583, 2, 65537, 65584, 2, 65537, 65585, 2, 65537, 65586, 2, 65537, 65587, 2, 65537, 65588, 2, 65537, 65589, 2, 65537, 65590, 2, 65537, 65591, 2, 65537, 65592, 2, 65537, 65593, 2, 65537, 65594, 2, 65537, 65595, 2, 65537, 65596, 2, 65537, 65597, 2, 65537, 65598, 2, 65537, 65599, 2, 65537, 65600, 2, 65537, 65601, 2, 65537, 65602, 2, 65537, 65603, 2, 65538, 196584, 2, 65536, 196585, 2, 65537, 196586, 2, 65537, 196587, 2, 65537, 196588, 2, 65537, 196589, 2, 65537, 196590, 2, 65537, 196591, 2, 65537, 196592, 2, 65537, 196593, 2, 65537, 196594, 2, 65537, 196595, 2, 65537, 196596, 2, 65537, 196597, 2, 65537, 196598, 2, 65537, 196599, 2, 65537, 196600, 2, 65537, 196601, 2, 65537, 196602, 2, 65537, 196603, 2, 65537, 196604, 2, 65537, 196605, 2, 65537, 196606, 2, 65537, 196607, 2, 65537, 131072, 2, 65538, 131073, 0, 196608, 131074, 0, 196609, 131075, 0, 196609, 131076, 0, 196609, 131077, 0, 196609, 131078, 0, 196609, 131079, 0, 196609, 131080, 0, 196609, 131081, 0, 196609, 131082, 0, 196609, 131083, 0, 196610, 131084, 1, 65536, 131085, 1, 65537, 131086, 1, 65537, 131087, 1, 65537, 131088, 1, 65538, 131089, 0, 196608, 131090, 0, 196609, 131091, 0, 196609, 131092, 0, 262145, 131093, 0, 262145, 131094, 0, 262145, 131095, 0, 262145, 131096, 0, 262145, 131097, 0, 262145, 131098, 0, 262145, 131099, 0, 262145, 131100, 0, 196609, 131101, 0, 196609, 131102, 0, 196609, 131103, 0, 196610, 131104, 2, 65536, 131105, 2, 65537, 131106, 2, 65537, 131107, 2, 65537, 131108, 2, 65537, 131109, 2, 65537, 131110, 2, 65537, 131111, 2, 65537, 131112, 2, 65537, 131113, 2, 65537, 131114, 2, 65537, 131115, 2, 65537, 131116, 2, 65537, 131117, 2, 65537, 131118, 2, 65537, 131119, 2, 65537, 131120, 2, 65537, 131121, 2, 65537, 131122, 2, 65537, 131123, 2, 65537, 131124, 2, 65537, 131125, 2, 65537, 131126, 2, 65537, 131127, 2, 65537, 131128, 2, 65537, 131129, 2, 65537, 131130, 2, 65537, 131131, 2, 65537, 131132, 2, 65537, 131133, 2, 65537, 131134, 2, 65537, 131135, 2, 65537, 131136, 2, 65537, 131137, 2, 65537, 131138, 2, 65537, 131139, 2, 65538, 262120, 2, 131072, 262121, 2, 65537, 262122, 2, 65537, 262123, 2, 65537, 262124, 2, 65537, 262125, 2, 65537, 262126, 2, 65537, 262127, 2, 65537, 262128, 2, 65537, 262129, 2, 65537, 262130, 2, 65537, 262131, 2, 65537, 262132, 2, 65537, 262133, 2, 65537, 262134, 2, 65537, 262135, 2, 65537, 262136, 2, 65537, 262137, 2, 65537, 262138, 2, 65537, 262139, 2, 65537, 262140, 2, 65537, 262141, 2, 65537, 262142, 2, 65537, 262143, 2, 65537, 196608, 2, 65538, 196609, 0, 196608, 196610, 0, 196609, 196611, 0, 196609, 196612, 0, 196609, 196613, 0, 196609, 196614, 0, 196609, 196615, 0, 196609, 196616, 0, 196609, 196617, 0, 196609, 196618, 0, 196609, 196619, 0, 196610, 196620, 1, 65536, 196621, 1, 65537, 196622, 1, 65537, 196623, 1, 65537, 196624, 1, 65538, 196625, 0, 196608, 196626, 0, 196609, 196627, 0, 196610, 196628, 2, 0, 196629, 2, 1, 196630, 2, 1, 196631, 2, 1, 196632, 2, 1, 196633, 2, 1, 196634, 2, 1, 196635, 2, 2, 196636, 0, 196608, 196637, 0, 196609, 196638, 0, 196609, 196639, 0, 196610, 196640, 2, 65536, 196641, 2, 65537, 196642, 2, 65537, 196643, 2, 65537, 196644, 2, 65537, 196645, 2, 65537, 196646, 2, 65537, 196647, 2, 65537, 196648, 2, 65537, 196649, 2, 65537, 196650, 2, 65537, 196651, 2, 65537, 196652, 2, 65537, 196653, 2, 65537, 196654, 2, 65537, 196655, 2, 65537, 196656, 2, 65537, 196657, 2, 65537, 196658, 2, 65537, 196659, 2, 65537, 196660, 2, 65537, 196661, 2, 65537, 196662, 2, 65537, 196663, 2, 65537, 196664, 2, 65537, 196665, 2, 65537, 196666, 2, 65537, 196667, 2, 65537, 196668, 2, 65537, 196669, 2, 65537, 196670, 2, 65537, 196671, 2, 65537, 196672, 2, 65537, 196673, 2, 65537, 196674, 2, 65537, 196675, 2, 65538, 327657, 2, 65536, 327658, 2, 65537, 327659, 2, 65537, 327660, 2, 65537, 327661, 2, 65537, 327662, 2, 65537, 327663, 2, 65537, 327664, 2, 65537, 327665, 2, 65537, 327666, 2, 65537, 327667, 2, 65537, 327668, 2, 65537, 327669, 2, 65537, 327670, 2, 65537, 327671, 2, 65537, 327672, 2, 65537, 327673, 2, 65537, 327674, 2, 65537, 327675, 2, 65537, 327676, 2, 65537, 327677, 2, 65537, 327678, 2, 65537, 327679, 2, 65537, 262144, 2, 65538, 262145, 0, 196608, 262146, 0, 196609, 262147, 0, 196609, 262148, 0, 196609, 262149, 0, 196609, 262150, 0, 196609, 262151, 0, 196609, 262152, 0, 196609, 262153, 0, 196609, 262154, 0, 196609, 262155, 0, 196610, 262156, 1, 65536, 262157, 1, 65537, 262158, 1, 65537, 262159, 1, 65537, 262160, 1, 65538, 262161, 0, 196608, 262162, 0, 196609, 262163, 0, 196610, 262164, 2, 65536, 262165, 2, 65537, 262166, 2, 65537, 262167, 2, 65537, 262168, 2, 65537, 262169, 2, 65537, 262170, 2, 65537, 262171, 2, 65538, 262172, 0, 196608, 262173, 0, 196609, 262174, 0, 196609, 262175, 0, 196610, 262176, 2, 65536, 262177, 2, 65537, 262178, 2, 65537, 262179, 2, 65537, 262180, 2, 65537, 262181, 2, 65537, 262182, 2, 65537, 262183, 2, 65537, 262184, 2, 65537, 262185, 2, 65537, 262186, 2, 65537, 262187, 2, 65537, 262188, 2, 65537, 262189, 2, 65537, 262190, 2, 65537, 262191, 2, 65537, 262192, 2, 65537, 262193, 2, 65537, 262194, 2, 65537, 262195, 2, 65537, 262196, 2, 65537, 262197, 2, 65537, 262198, 2, 65537, 262199, 2, 65537, 262200, 2, 65537, 262201, 2, 65537, 262202, 2, 65537, 262203, 2, 65537, 262204, 2, 65537, 262205, 2, 65537, 262206, 2, 65537, 262207, 2, 65537, 262208, 2, 65537, 262209, 2, 65537, 262210, 2, 65537, 262211, 2, 65538, 393193, 2, 65536, 393194, 2, 65537, 393195, 2, 65537, 393196, 2, 65537, 393197, 2, 65537, 393198, 2, 65537, 393199, 2, 65537, 393200, 2, 65537, 393201, 2, 65537, 393202, 2, 65537, 393203, 2, 65537, 393204, 2, 65537, 393205, 2, 65537, 393206, 2, 65537, 393207, 2, 65537, 393208, 2, 65537, 393209, 2, 65537, 393210, 2, 65537, 393211, 2, 65537, 393212, 2, 65537, 393213, 2, 65537, 393214, 2, 65537, 393215, 2, 65537, 327680, 2, 65538, 327681, 0, 196608, 327682, 0, 196609, 327683, 0, 196609, 327684, 0, 196609, 327685, 0, 196609, 327686, 0, 196609, 327687, 0, 196609, 327688, 0, 196609, 327689, 0, 196609, 327690, 0, 196609, 327691, 0, 196610, 327692, 1, 65536, 327693, 1, 65537, 327694, 1, 65537, 327695, 1, 65537, 327696, 1, 65538, 327697, 0, 196608, 327698, 0, 196609, 327699, 0, 196610, 327700, 2, 65536, 327701, 2, 65537, 327702, 2, 65537, 327703, 2, 65537, 327704, 2, 65537, 327705, 2, 65537, 327706, 2, 65537, 327707, 2, 65538, 327708, 0, 196608, 327709, 0, 196609, 327710, 0, 196609, 327711, 0, 196610, 327712, 2, 65536, 327713, 2, 65537, 327714, 2, 65537, 327715, 2, 65537, 327716, 2, 65537, 327717, 2, 65537, 327718, 2, 65537, 327719, 2, 65537, 327720, 2, 65537, 327721, 2, 65537, 327722, 2, 65537, 327723, 2, 65537, 327724, 2, 65537, 327725, 2, 65537, 327726, 2, 65537, 327727, 2, 65537, 327728, 2, 65537, 327729, 2, 65537, 327730, 2, 65537, 327731, 2, 65537, 327732, 2, 65537, 327733, 2, 65537, 327734, 2, 65537, 327735, 2, 65537, 327736, 2, 65537, 327737, 2, 65537, 327738, 2, 65537, 327739, 2, 65537, 327740, 2, 65537, 327741, 2, 65537, 327742, 2, 65537, 327743, 2, 65537, 327744, 2, 65537, 327745, 2, 65537, 327746, 2, 65537, 327747, 2, 65538, 458729, 2, 65536, 458730, 2, 65537, 458731, 2, 65537, 458732, 2, 65537, 458733, 2, 65537, 458734, 2, 65537, 458735, 2, 65537, 458736, 2, 65537, 458737, 2, 65537, 458738, 2, 65537, 458739, 2, 65537, 458740, 2, 65537, 458741, 2, 65537, 458742, 2, 65537, 458743, 2, 65537, 458744, 2, 65537, 458745, 2, 65537, 458746, 2, 65537, 458747, 2, 65537, 458748, 2, 65537, 458749, 2, 65537, 458750, 2, 131073, 458751, 2, 131073, 393216, 2, 131074, 393217, 0, 196608, 393218, 0, 196609, 393219, 0, 196609, 393220, 0, 196609, 393221, 0, 196609, 393222, 0, 196609, 393223, 0, 196609, 393224, 0, 196609, 393225, 0, 196609, 393226, 0, 196609, 393227, 0, 262146, 393228, 1, 65536, 393229, 1, 65537, 393230, 1, 65537, 393231, 1, 65537, 393232, 1, 65538, 393233, 0, 196608, 393234, 0, 196609, 393235, 0, 196610, 393236, 2, 65536, 393237, 2, 65537, 393238, 2, 65537, 393239, 2, 65537, 393240, 2, 65537, 393241, 2, 65537, 393242, 2, 65537, 393243, 2, 65538, 393244, 0, 196608, 393245, 0, 196609, 393246, 0, 196609, 393247, 0, 196610, 393248, 2, 65536, 393249, 2, 65537, 393250, 2, 65537, 393251, 2, 65537, 393252, 2, 65537, 393253, 2, 65537, 393254, 2, 65537, 393255, 2, 65537, 393256, 2, 65537, 393257, 2, 65537, 393258, 2, 65537, 393259, 2, 65537, 393260, 2, 65537, 393261, 2, 65537, 393262, 2, 65537, 393263, 2, 65537, 393264, 2, 65537, 393265, 2, 65537, 393266, 2, 65537, 393267, 2, 65537, 393268, 2, 65537, 393269, 2, 65537, 393270, 2, 65537, 393271, 2, 65537, 393272, 2, 65537, 393273, 2, 65537, 393274, 2, 65537, 393275, 2, 65537, 393276, 2, 65537, 393277, 2, 65537, 393278, 2, 65537, 393279, 2, 65537, 393280, 2, 65537, 393281, 2, 65537, 393282, 2, 65537, 393283, 2, 65538, 524265, 2, 65536, 524266, 2, 65537, 524267, 2, 65537, 524268, 2, 65537, 524269, 2, 65537, 524270, 2, 65537, 524271, 2, 65537, 524272, 2, 65537, 524273, 2, 65537, 524274, 2, 65537, 524275, 2, 65537, 524276, 2, 65537, 524277, 2, 65537, 524278, 2, 65537, 524279, 2, 65537, 524280, 2, 65537, 524281, 2, 65537, 524282, 2, 65537, 524283, 2, 65537, 524284, 2, 65537, 524285, 2, 65538, 524286, 0, 131072, 524287, 0, 131073, 458752, 0, 131073, 458753, 0, 196609, 458754, 0, 196609, 458755, 0, 196609, 458756, 0, 196609, 458757, 0, 196609, 458758, 0, 196609, 458759, 0, 196609, 458760, 0, 196609, 458761, 0, 196609, 458762, 0, 262146, 458763, 1, 0, 458764, 1, 65537, 458765, 1, 65537, 458766, 1, 65537, 458767, 1, 65537, 458768, 1, 65538, 458769, 0, 196608, 458770, 0, 196609, 458771, 0, 196610, 458772, 2, 131072, 458773, 2, 131073, 458774, 2, 131073, 458775, 2, 131073, 458776, 2, 131073, 458777, 2, 131073, 458778, 2, 131073, 458779, 2, 131074, 458780, 0, 196608, 458781, 0, 196609, 458782, 0, 196609, 458783, 0, 196610, 458784, 2, 65536, 458785, 2, 65537, 458786, 2, 65537, 458787, 2, 65537, 458788, 2, 65537, 458789, 2, 65537, 458790, 2, 65537, 458791, 2, 65537, 458792, 2, 65537, 458793, 2, 65537, 458794, 2, 65537, 458795, 2, 65537, 458796, 2, 65537, 458797, 2, 65537, 458798, 2, 65537, 458799, 2, 65537, 458800, 2, 65537, 458801, 2, 65537, 458802, 2, 65537, 458803, 2, 65537, 458804, 2, 65537, 458805, 2, 65537, 458806, 2, 65537, 458807, 2, 65537, 458808, 2, 65537, 458809, 2, 65537, 458810, 2, 65537, 458811, 2, 65537, 458812, 2, 65537, 458813, 2, 65537, 458814, 2, 65537, 458815, 2, 65537, 458816, 2, 65537, 458817, 2, 65537, 458818, 2, 65537, 458819, 2, 65538, 589801, 2, 65536, 589802, 2, 65537, 589803, 2, 65537, 589804, 2, 65537, 589805, 2, 65537, 589806, 2, 65537, 589807, 2, 65537, 589808, 2, 65537, 589809, 2, 65537, 589810, 2, 65537, 589811, 2, 65537, 589812, 2, 65537, 589813, 2, 65537, 589814, 2, 65537, 589815, 2, 65537, 589816, 2, 65537, 589817, 2, 65537, 589818, 2, 65537, 589819, 2, 65537, 589820, 2, 65537, 589821, 2, 65538, 589822, 0, 196608, 589823, 0, 196609, 524288, 0, 196609, 524289, 0, 196609, 524290, 0, 196609, 524291, 0, 196609, 524292, 0, 196609, 524293, 0, 196609, 524294, 0, 196609, 524295, 0, 196609, 524296, 0, 196609, 524297, 0, 196610, 524298, 1, 0, 524299, 1, 65537, 524300, 1, 65537, 524301, 1, 65537, 524302, 1, 65537, 524303, 1, 65537, 524304, 1, 65538, 524305, 0, 196608, 524306, 0, 196609, 524307, 0, 196609, 524308, 0, 131073, 524309, 0, 131073, 524310, 0, 131073, 524311, 0, 131073, 524312, 0, 131073, 524313, 0, 131073, 524314, 0, 131073, 524315, 0, 131073, 524316, 0, 196609, 524317, 0, 196609, 524318, 0, 196609, 524319, 0, 196610, 524320, 2, 65536, 524321, 2, 65537, 524322, 2, 65537, 524323, 2, 65537, 524324, 2, 65537, 524325, 2, 65537, 524326, 2, 65537, 524327, 2, 65537, 524328, 2, 65537, 524329, 2, 65537, 524330, 2, 65537, 524331, 2, 65537, 524332, 2, 65537, 524333, 2, 65537, 524334, 2, 65537, 524335, 2, 65537, 524336, 2, 65537, 524337, 2, 65537, 524338, 2, 65537, 524339, 2, 65537, 524340, 2, 65537, 524341, 2, 65537, 524342, 2, 65537, 524343, 2, 65537, 524344, 2, 65537, 524345, 2, 65537, 524346, 2, 65537, 524347, 2, 65537, 524348, 2, 65537, 524349, 2, 65537, 524350, 2, 65537, 524351, 2, 65537, 524352, 2, 65537, 524353, 2, 65537, 524354, 2, 65537, 524355, 2, 65538, 655337, 2, 65536, 655338, 2, 65537, 655339, 2, 65537, 655340, 2, 65537, 655341, 2, 65537, 655342, 2, 65537, 655343, 2, 65537, 655344, 2, 65537, 655345, 2, 65537, 655346, 2, 65537, 655347, 2, 65537, 655348, 2, 65537, 655349, 2, 65537, 655350, 2, 65537, 655351, 2, 65537, 655352, 2, 65537, 655353, 2, 65537, 655354, 2, 65537, 655355, 2, 65537, 655356, 2, 65537, 655357, 2, 65538, 655358, 0, 196608, 655359, 0, 196609, 589824, 0, 196609, 589825, 0, 196609, 589826, 0, 196609, 589827, 0, 196609, 589828, 0, 196609, 589829, 0, 196609, 589830, 0, 196609, 589831, 0, 196609, 589832, 0, 196609, 589833, 0, 196610, 589834, 1, 65536, 589835, 1, 65537, 589836, 1, 65537, 589837, 1, 65537, 589838, 1, 65537, 589839, 1, 65537, 589840, 1, 65538, 589841, 0, 196608, 589842, 0, 196609, 589843, 0, 196609, 589844, 0, 196609, 589845, 0, 196609, 589846, 0, 196609, 589847, 0, 196609, 589848, 0, 196609, 589849, 0, 196609, 589850, 0, 196609, 589851, 0, 196609, 589852, 0, 196609, 589853, 0, 196609, 589854, 0, 196609, 589855, 0, 196610, 589856, 2, 65536, 589857, 2, 65537, 589858, 2, 65537, 589859, 2, 65537, 589860, 2, 65537, 589861, 2, 65537, 589862, 2, 65537, 589863, 2, 65537, 589864, 2, 65537, 589865, 2, 65537, 589866, 2, 65537, 589867, 2, 65537, 589868, 2, 65537, 589869, 2, 65537, 589870, 2, 65537, 589871, 2, 65537, 589872, 2, 65537, 589873, 2, 65537, 589874, 2, 65537, 589875, 2, 65537, 589876, 2, 65537, 589877, 2, 65537, 589878, 2, 65537, 589879, 2, 65537, 589880, 2, 65537, 589881, 2, 65537, 589882, 2, 65537, 589883, 2, 65537, 589884, 2, 65537, 589885, 2, 65537, 589886, 2, 65537, 589887, 2, 65537, 589888, 2, 65537, 589889, 2, 65537, 589890, 2, 65537, 589891, 2, 65538, 720873, 2, 65536, 720874, 2, 65537, 720875, 2, 65537, 720876, 2, 65537, 720877, 2, 65537, 720878, 2, 65537, 720879, 2, 65537, 720880, 2, 65537, 720881, 2, 65537, 720882, 2, 65537, 720883, 2, 65537, 720884, 2, 65537, 720885, 2, 65537, 720886, 2, 65537, 720887, 2, 65537, 720888, 2, 65537, 720889, 2, 65537, 720890, 2, 65537, 720891, 2, 65537, 720892, 2, 65537, 720893, 2, 65538, 720894, 0, 262144, 720895, 0, 262145, 655360, 0, 262145, 655361, 0, 262145, 655362, 0, 262145, 655363, 0, 262145, 655364, 0, 262145, 655365, 0, 262145, 655366, 0, 262145, 655367, 0, 262145, 655368, 0, 262145, 655369, 0, 262146, 655370, 1, 65536, 655371, 1, 65537, 655372, 1, 65537, 655373, 1, 65537, 655374, 1, 65537, 655375, 1, 65537, 655376, 1, 65538, 655377, 0, 196608, 655378, 0, 196609, 655379, 0, 196609, 655380, 0, 196609, 655381, 0, 196609, 655382, 0, 196609, 655383, 0, 196609, 655384, 0, 196609, 655385, 0, 196609, 655386, 0, 196609, 655387, 0, 196609, 655388, 0, 196609, 655389, 0, 196609, 655390, 0, 196609, 655391, 0, 196610, 655392, 2, 65536, 655393, 2, 65537, 655394, 2, 65537, 655395, 2, 65537, 655396, 2, 65537, 655397, 2, 65537, 655398, 2, 65537, 655399, 2, 65537, 655400, 2, 65537, 655401, 2, 65537, 655402, 2, 65537, 655403, 2, 65537, 655404, 2, 65537, 655405, 2, 65537, 655406, 2, 65537, 655407, 2, 65537, 655408, 2, 65537, 655409, 2, 65537, 655410, 2, 65537, 655411, 2, 65537, 655412, 2, 65537, 655413, 2, 65537, 655414, 2, 65537, 655415, 2, 65537, 655416, 2, 65537, 655417, 2, 65537, 655418, 2, 65537, 655419, 2, 65537, 655420, 2, 65537, 655421, 2, 65537, 655422, 2, 65537, 655423, 2, 65537, 655424, 2, 65537, 655425, 2, 65537, 655426, 2, 65537, 655427, 2, 65538, 786409, 2, 65536, 786410, 2, 65537, 786411, 2, 65537, 786412, 2, 65537, 786413, 2, 65537, 786414, 2, 65537, 786415, 2, 65537, 786416, 2, 65537, 786417, 2, 65537, 786418, 2, 65537, 786419, 2, 65537, 786420, 2, 65537, 786421, 2, 65537, 786422, 2, 65537, 786423, 2, 65537, 786424, 2, 65537, 786425, 2, 65537, 786426, 2, 65537, 786427, 2, 65537, 786428, 2, 65537, 786429, 2, 65538, 786430, 1, 0, 786431, 1, 1, 720896, 1, 1, 720897, 1, 1, 720898, 1, 1, 720899, 1, 1, 720900, 1, 1, 720901, 1, 1, 720902, 1, 1, 720903, 1, 1, 720904, 1, 1, 720905, 1, 1, 720906, 1, 65537, 720907, 1, 65537, 720908, 1, 65537, 720909, 1, 65537, 720910, 1, 65537, 720911, 1, 65537, 720912, 1, 65538, 720913, 0, 262144, 720914, 0, 262145, 720915, 0, 262145, 720916, 0, 262145, 720917, 0, 262145, 720918, 0, 262145, 720919, 0, 262145, 720920, 0, 262145, 720921, 0, 262145, 720922, 0, 262145, 720923, 0, 262145, 720924, 0, 262145, 720925, 0, 262145, 720926, 0, 262145, 720927, 0, 262146, 720928, 2, 65536, 720929, 2, 65537, 720930, 2, 65537, 720931, 2, 65537, 720932, 2, 65537, 720933, 2, 65537, 720934, 2, 65537, 720935, 2, 65537, 720936, 2, 65537, 720937, 2, 65537, 720938, 2, 65537, 720939, 2, 65537, 720940, 2, 65537, 720941, 2, 65537, 720942, 2, 65537, 720943, 2, 65537, 720944, 2, 65537, 720945, 2, 65537, 720946, 2, 65537, 720947, 2, 65537, 720948, 2, 65537, 720949, 2, 65537, 720950, 2, 65537, 720951, 2, 65537, 720952, 2, 65537, 720953, 2, 65537, 720954, 2, 65537, 720955, 2, 65537, 720956, 2, 65537, 720957, 2, 65537, 720958, 2, 65537, 720959, 2, 65537, 720960, 2, 65537, 720961, 2, 65537, 720962, 2, 65537, 720963, 2, 65538, 851945, 2, 65536, 851946, 2, 65537, 851947, 2, 65537, 851948, 2, 65537, 851949, 2, 65537, 851950, 2, 65537, 851951, 2, 65537, 851952, 2, 65537, 851953, 2, 65537, 851954, 2, 65537, 851955, 2, 65537, 851956, 2, 65537, 851957, 2, 65537, 851958, 2, 65537, 851959, 2, 65537, 851960, 2, 65537, 851961, 2, 65537, 851962, 2, 65537, 851963, 2, 65537, 851964, 2, 65537, 851965, 2, 65538, 851966, 1, 65536, 851967, 1, 65537, 786432, 1, 65537, 786433, 1, 65537, 786434, 1, 65537, 786435, 1, 65537, 786436, 1, 65537, 786437, 1, 65537, 786438, 1, 65537, 786439, 1, 65537, 786440, 1, 65537, 786441, 1, 65537, 786442, 1, 65537, 786443, 1, 65537, 786444, 1, 65537, 786445, 1, 65537, 786446, 1, 65537, 786447, 1, 65537, 786448, 1, 65537, 786449, 1, 1, 786450, 1, 1, 786451, 1, 1, 786452, 1, 1, 786453, 1, 1, 786454, 1, 1, 786455, 1, 1, 786456, 1, 1, 786457, 1, 1, 786458, 1, 1, 786459, 1, 1, 786460, 1, 1, 786461, 1, 1, 786462, 1, 1, 786463, 1, 2, 786464, 2, 65536, 786465, 2, 65537, 786466, 2, 65537, 786467, 2, 65537, 786468, 2, 65537, 786469, 2, 65537, 786470, 2, 65537, 786471, 2, 65537, 786472, 2, 65537, 786473, 2, 65537, 786474, 2, 65537, 786475, 2, 65537, 786476, 2, 65537, 786477, 2, 65537, 786478, 2, 65537, 786479, 2, 65537, 786480, 2, 65537, 786481, 2, 65537, 786482, 2, 65537, 786483, 2, 65537, 786484, 2, 65537, 786485, 2, 65537, 786486, 2, 65537, 786487, 2, 65537, 786488, 2, 65537, 786489, 2, 65537, 786490, 2, 65537, 786491, 2, 65537, 786492, 2, 65537, 786493, 2, 65537, 786494, 2, 65537, 786495, 2, 65537, 786496, 2, 65537, 786497, 2, 65537, 786498, 2, 65537, 786499, 2, 65538, 917481, 2, 65536, 917482, 2, 65537, 917483, 2, 65537, 917484, 2, 65537, 917485, 2, 65537, 917486, 2, 65537, 917487, 2, 65537, 917488, 2, 65537, 917489, 2, 65537, 917490, 2, 65537, 917491, 2, 65537, 917492, 2, 65537, 917493, 2, 65537, 917494, 2, 65537, 917495, 2, 65537, 917496, 2, 65537, 917497, 2, 65537, 917498, 2, 65537, 917499, 2, 65537, 917500, 2, 65537, 917501, 2, 65538, 917502, 1, 131072, 917503, 1, 131073, 851968, 1, 131073, 851969, 1, 131073, 851970, 1, 131073, 851971, 1, 131073, 851972, 1, 131073, 851973, 1, 131073, 851974, 1, 131073, 851975, 1, 131073, 851976, 1, 131073, 851977, 1, 131073, 851978, 1, 65537, 851979, 1, 65537, 851980, 1, 65537, 851981, 1, 65537, 851982, 1, 65537, 851983, 1, 65537, 851984, 1, 65537, 851985, 1, 65537, 851986, 1, 65537, 851987, 1, 65537, 851988, 1, 65537, 851989, 1, 65537, 851990, 1, 65537, 851991, 1, 65537, 851992, 1, 65537, 851993, 1, 65537, 851994, 1, 65537, 851995, 1, 65537, 851996, 1, 65537, 851997, 1, 65537, 851998, 1, 65537, 851999, 1, 65538, 852000, 2, 65536, 852001, 2, 65537, 852002, 2, 65537, 852003, 2, 65537, 852004, 2, 65537, 852005, 2, 65537, 852006, 2, 65537, 852007, 2, 65537, 852008, 2, 65537, 852009, 2, 65537, 852010, 2, 65537, 852011, 2, 65537, 852012, 2, 65537, 852013, 2, 65537, 852014, 2, 65537, 852015, 2, 65537, 852016, 2, 65537, 852017, 2, 65537, 852018, 2, 65537, 852019, 2, 65537, 852020, 2, 65537, 852021, 2, 65537, 852022, 2, 65537, 852023, 2, 65537, 852024, 2, 65537, 852025, 2, 65537, 852026, 2, 65537, 852027, 2, 65537, 852028, 2, 65537, 852029, 2, 65537, 852030, 2, 65537, 852031, 2, 65537, 852032, 2, 65537, 852033, 2, 65537, 852034, 2, 65537, 852035, 2, 65538, 983017, 2, 65536, 983018, 2, 65537, 983019, 2, 65537, 983020, 2, 65537, 983021, 2, 65537, 983022, 2, 65537, 983023, 2, 65537, 983024, 2, 65537, 983025, 2, 65537, 983026, 2, 65537, 983027, 2, 65537, 983028, 2, 65537, 983029, 2, 65537, 983030, 2, 65537, 983031, 2, 65537, 983032, 2, 65537, 983033, 2, 65537, 983034, 2, 65537, 983035, 2, 65537, 983036, 2, 65537, 983037, 2, 65538, 983038, 0, 196609, 983039, 0, 196609, 917504, 0, 131072, 917505, 0, 131073, 917506, 0, 131073, 917507, 0, 131073, 917508, 0, 131073, 917509, 0, 131073, 917510, 0, 131073, 917511, 0, 131073, 917512, 0, 131073, 917513, 0, 131074, 917514, 1, 65536, 917515, 1, 65537, 917516, 1, 65537, 917517, 1, 65537, 917518, 1, 65537, 917519, 1, 65537, 917520, 1, 65537, 917521, 1, 131073, 917522, 1, 131073, 917523, 1, 131073, 917524, 1, 131073, 917525, 1, 131073, 917526, 1, 131073, 917527, 1, 131073, 917528, 1, 131073, 917529, 1, 131073, 917530, 1, 131073, 917531, 1, 131073, 917532, 1, 131073, 917533, 1, 131073, 917534, 1, 131073, 917535, 1, 131074, 917536, 2, 65536, 917537, 2, 65537, 917538, 2, 65537, 917539, 2, 65537, 917540, 2, 65537, 917541, 2, 65537, 917542, 2, 65537, 917543, 2, 65537, 917544, 2, 65537, 917545, 2, 65537, 917546, 2, 65537, 917547, 2, 65537, 917548, 2, 65537, 917549, 2, 65537, 917550, 2, 65537, 917551, 2, 65537, 917552, 2, 65537, 917553, 2, 65537, 917554, 2, 65537, 917555, 2, 65537, 917556, 2, 65537, 917557, 2, 65537, 917558, 2, 65537, 917559, 2, 65537, 917560, 2, 65537, 917561, 2, 65537, 917562, 2, 65537, 917563, 2, 65537, 917564, 2, 65537, 917565, 2, 65537, 917566, 2, 65537, 917567, 2, 65537, 917568, 2, 65537, 917569, 2, 65537, 917570, 2, 65537, 917571, 2, 65538, 1048553, 2, 65536, 1048554, 2, 65537, 1048555, 2, 65537, 1048556, 2, 65537, 1048557, 2, 65537, 1048558, 2, 65537, 1048559, 2, 65537, 1048560, 2, 65537, 1048561, 2, 65537, 1048562, 2, 65537, 1048563, 2, 65537, 1048564, 2, 65537, 1048565, 2, 65537, 1048566, 2, 65537, 1048567, 2, 65537, 1048568, 2, 65537, 1048569, 2, 65537, 1048570, 2, 65537, 1048571, 2, 65537, 1048572, 2, 65537, 1048573, 2, 65537, 1048574, 2, 1, 1048575, 2, 2, 983040, 0, 262144, 983041, 0, 196609, 983042, 0, 196609, 983043, 0, 196609, 983044, 0, 196609, 983045, 0, 196609, 983046, 0, 196609, 983047, 0, 196609, 983048, 0, 196609, 983049, 0, 196610, 983050, 1, 131072, 983051, 1, 65537, 983052, 1, 65537, 983053, 1, 65537, 983054, 1, 65537, 983055, 1, 65537, 983056, 1, 65538, 983057, 0, 131072, 983058, 0, 131073, 983059, 0, 131073, 983060, 0, 131073, 983061, 0, 131073, 983062, 0, 131073, 983063, 0, 131073, 983064, 0, 131073, 983065, 0, 131073, 983066, 0, 131073, 983067, 0, 131073, 983068, 0, 131073, 983069, 0, 131073, 983070, 0, 131073, 983071, 0, 131074, 983072, 2, 65536, 983073, 2, 65537, 983074, 2, 65537, 983075, 2, 65537, 983076, 2, 65537, 983077, 2, 65537, 983078, 2, 65537, 983079, 2, 65537, 983080, 2, 65537, 983081, 2, 65537, 983082, 2, 65537, 983083, 2, 65537, 983084, 2, 65537, 983085, 2, 65537, 983086, 2, 65537, 983087, 2, 65537, 983088, 2, 65537, 983089, 2, 65537, 983090, 2, 65537, 983091, 2, 65537, 983092, 2, 65537, 983093, 2, 65537, 983094, 2, 65537, 983095, 2, 65537, 983096, 2, 65537, 983097, 2, 65537, 983098, 2, 65537, 983099, 2, 65537, 983100, 2, 65537, 983101, 2, 65537, 983102, 2, 65537, 983103, 2, 65537, 983104, 2, 65537, 983105, 2, 65537, 983106, 2, 65537, 983107, 2, 65538, 1114089, 2, 65536, 1114090, 2, 65537, 1114091, 2, 65537, 1114092, 2, 65537, 1114093, 2, 65537, 1114094, 2, 65537, 1114095, 2, 65537, 1114096, 2, 65537, 1114097, 2, 65537, 1114098, 2, 65537, 1114099, 2, 65537, 1114100, 2, 65537, 1114101, 2, 65537, 1114102, 2, 65537, 1114103, 2, 65537, 1114104, 2, 65537, 1114105, 2, 65537, 1114106, 2, 65537, 1114107, 2, 65537, 1114108, 2, 65537, 1114109, 2, 65537, 1114110, 2, 65537, 1114111, 2, 65537, 1048576, 2, 2, 1048577, 0, 196608, 1048578, 0, 196609, 1048579, 0, 196609, 1048580, 0, 196609, 1048581, 0, 196609, 1048582, 0, 196609, 1048583, 0, 196609, 1048584, 0, 196609, 1048585, 0, 196609, 1048586, 0, 131074, 1048587, 1, 131072, 1048588, 1, 65537, 1048589, 1, 65537, 1048590, 1, 65537, 1048591, 1, 65537, 1048592, 1, 65538, 1048593, 0, 196608, 1048594, 0, 196609, 1048595, 0, 196609, 1048596, 0, 196609, 1048597, 0, 196609, 1048598, 0, 196609, 1048599, 0, 196609, 1048600, 0, 196609, 1048601, 0, 196609, 1048602, 0, 196609, 1048603, 0, 196609, 1048604, 0, 196609, 1048605, 0, 196609, 1048606, 0, 196609, 1048607, 0, 196610, 1048608, 2, 65536, 1048609, 2, 65537, 1048610, 2, 65537, 1048611, 2, 65537, 1048612, 2, 65537, 1048613, 2, 65537, 1048614, 2, 65537, 1048615, 2, 65537, 1048616, 2, 65537, 1048617, 2, 65537, 1048618, 2, 65537, 1048619, 2, 65537, 1048620, 2, 65537, 1048621, 2, 65537, 1048622, 2, 65537, 1048623, 2, 65537, 1048624, 2, 65537, 1048625, 2, 65537, 1048626, 2, 65537, 1048627, 2, 65537, 1048628, 2, 65537, 1048629, 2, 65537, 1048630, 2, 65537, 1048631, 2, 65537, 1048632, 2, 65537, 1048633, 2, 65537, 1048634, 2, 65537, 1048635, 2, 65537, 1048636, 2, 65537, 1048637, 2, 65537, 1048638, 2, 65537, 1048639, 2, 65537, 1048640, 2, 65537, 1048641, 2, 65537, 1048642, 2, 65537, 1048643, 2, 65538, 1179625, 2, 65536, 1179626, 2, 65537, 1179627, 2, 65537, 1179628, 2, 65537, 1179629, 2, 65537, 1179630, 2, 65537, 1179631, 2, 65537, 1179632, 2, 65537, 1179633, 2, 65537, 1179634, 2, 65537, 1179635, 2, 65537, 1179636, 2, 65537, 1179637, 2, 65537, 1179638, 2, 65537, 1179639, 2, 65537, 1179640, 2, 65537, 1179641, 2, 65537, 1179642, 2, 65537, 1179643, 2, 65537, 1179644, 2, 65537, 1179645, 2, 65537, 1179646, 2, 65537, 1179647, 2, 65537, 1114112, 2, 65538, 1114113, 0, 196608, 1114114, 0, 196609, 1114115, 0, 196609, 1114116, 0, 196609, 1114117, 0, 196609, 1114118, 0, 196609, 1114119, 0, 196609, 1114120, 0, 196609, 1114121, 0, 196609, 1114122, 0, 196609, 1114123, 0, 131074, 1114124, 1, 65536, 1114125, 1, 65537, 1114126, 1, 65537, 1114127, 1, 65537, 1114128, 1, 65538, 1114129, 0, 196608, 1114130, 0, 196609, 1114131, 0, 196609, 1114132, 0, 196609, 1114133, 0, 196609, 1114134, 0, 196609, 1114135, 0, 196609, 1114136, 0, 196609, 1114137, 0, 196609, 1114138, 0, 196609, 1114139, 0, 196609, 1114140, 0, 196609, 1114141, 0, 196609, 1114142, 0, 196609, 1114143, 0, 196610, 1114144, 2, 65536, 1114145, 2, 65537, 1114146, 2, 65537, 1114147, 2, 65537, 1114148, 2, 65537, 1114149, 2, 65537, 1114150, 2, 65537, 1114151, 2, 65537, 1114152, 2, 65537, 1114153, 2, 65537, 1114154, 2, 65537, 1114155, 2, 65537, 1114156, 2, 65537, 1114157, 2, 65537, 1114158, 2, 65537, 1114159, 2, 65537, 1114160, 2, 65537, 1114161, 2, 65537, 1114162, 2, 65537, 1114163, 2, 65537, 1114164, 2, 65537, 1114165, 2, 65537, 1114166, 2, 65537, 1114167, 2, 65537, 1114168, 2, 65537, 1114169, 2, 65537, 1114170, 2, 65537, 1114171, 2, 65537, 1114172, 2, 65537, 1114173, 2, 65537, 1114174, 2, 65537, 1114175, 2, 65537, 1114176, 2, 65537, 1114177, 2, 65537, 1114178, 2, 65537, 1114179, 2, 65538, 1245161, 2, 65536, 1245162, 2, 65537, 1245163, 2, 65537, 1245164, 2, 65537, 1245165, 2, 65537, 1245166, 2, 65537, 1245167, 2, 65537, 1245168, 2, 65537, 1245169, 2, 65537, 1245170, 2, 65537, 1245171, 2, 65537, 1245172, 2, 65537, 1245173, 2, 65537, 1245174, 2, 65537, 1245175, 2, 65537, 1245176, 2, 65537, 1245177, 2, 65537, 1245178, 2, 65537, 1245179, 2, 65537, 1245180, 2, 65537, 1245181, 2, 65537, 1245182, 2, 65537, 1245183, 2, 65537, 1179648, 2, 65538, 1179649, 0, 196608, 1179650, 0, 196609, 1179651, 0, 196609, 1179652, 0, 196609, 1179653, 0, 196609, 1179654, 0, 196609, 1179655, 0, 196609, 1179656, 0, 196609, 1179657, 0, 196609, 1179658, 0, 196609, 1179659, 0, 196610, 1179660, 1, 65536, 1179661, 1, 65537, 1179662, 1, 65537, 1179663, 1, 65537, 1179664, 1, 65538, 1179665, 0, 196608, 1179666, 0, 196609, 1179667, 0, 196609, 1179668, 0, 196609, 1179669, 0, 196609, 1179670, 0, 196609, 1179671, 0, 196609, 1179672, 0, 196609, 1179673, 0, 196609, 1179674, 0, 196609, 1179675, 0, 196609, 1179676, 0, 196609, 1179677, 0, 196609, 1179678, 0, 196609, 1179679, 0, 196610, 1179680, 2, 65536, 1179681, 2, 65537, 1179682, 2, 65537, 1179683, 2, 65537, 1179684, 2, 65537, 1179685, 2, 65537, 1179686, 2, 65537, 1179687, 2, 65537, 1179688, 2, 65537, 1179689, 2, 65537, 1179690, 2, 65537, 1179691, 2, 65537, 1179692, 2, 65537, 1179693, 2, 65537, 1179694, 2, 65537, 1179695, 2, 65537, 1179696, 2, 65537, 1179697, 2, 65537, 1179698, 2, 65537, 1179699, 2, 65537, 1179700, 2, 65537, 1179701, 2, 65537, 1179702, 2, 65537, 1179703, 2, 65537, 1179704, 2, 65537, 1179705, 2, 65537, 1179706, 2, 65537, 1179707, 2, 65537, 1179708, 2, 65537, 1179709, 2, 65537, 1179710, 2, 65537, 1179711, 2, 65537, 1179712, 2, 65537, 1179713, 2, 65537, 1179714, 2, 65537, 1179715, 2, 131074, 1310697, 2, 131072, 1310698, 2, 65537, 1310699, 2, 65537, 1310700, 2, 65537, 1310701, 2, 65537, 1310702, 2, 65537, 1310703, 2, 65537, 1310704, 2, 65537, 1310705, 2, 65537, 1310706, 2, 65537, 1310707, 2, 65537, 1310708, 2, 65537, 1310709, 2, 65537, 1310710, 2, 65537, 1310711, 2, 65537, 1310712, 2, 65537, 1310713, 2, 65537, 1310714, 2, 65537, 1310715, 2, 65537, 1310716, 2, 65537, 1310717, 2, 65537, 1310718, 2, 65537, 1310719, 2, 65537, 1245184, 2, 65538, 1245185, 0, 196608, 1245186, 0, 196609, 1245187, 0, 196609, 1245188, 0, 196609, 1245189, 0, 196609, 1245190, 0, 196609, 1245191, 0, 196609, 1245192, 0, 196609, 1245193, 0, 196609, 1245194, 0, 196609, 1245195, 0, 196610, 1245196, 1, 65536, 1245197, 1, 65537, 1245198, 1, 65537, 1245199, 1, 65537, 1245200, 1, 65538, 1245201, 0, 196608, 1245202, 0, 196609, 1245203, 0, 196609, 1245204, 0, 196609, 1245205, 0, 196609, 1245206, 0, 196609, 1245207, 0, 196609, 1245208, 0, 196609, 1245209, 0, 196609, 1245210, 0, 196609, 1245211, 0, 196609, 1245212, 0, 196609, 1245213, 0, 196609, 1245214, 0, 196609, 1245215, 0, 196610, 1245216, 2, 65536, 1245217, 2, 65537, 1245218, 2, 65537, 1245219, 2, 65537, 1245220, 2, 65537, 1245221, 2, 65537, 1245222, 2, 65537, 1245223, 2, 65537, 1245224, 2, 65537, 1245225, 2, 65537, 1245226, 2, 65537, 1245227, 2, 65537, 1245228, 2, 65537, 1245229, 2, 65537, 1245230, 2, 65537, 1245231, 2, 65537, 1245232, 2, 65537, 1245233, 2, 65537, 1245234, 2, 65537, 1245235, 2, 65537, 1245236, 2, 65537, 1245237, 2, 65537, 1245238, 2, 65537, 1245239, 2, 65537, 1245240, 2, 65537, 1245241, 2, 65537, 1245242, 2, 65537, 1245243, 2, 65537, 1245244, 2, 65537, 1245245, 2, 65537, 1245246, 2, 65537, 1245247, 2, 65537, 1245248, 2, 65537, 1245249, 2, 65537, 1245250, 2, 65538, 1376234, 2, 65536, 1376235, 2, 65537, 1376236, 2, 65537, 1376237, 2, 65537, 1376238, 2, 65537, 1376239, 2, 65537, 1376240, 2, 65537, 1376241, 2, 65537, 1376242, 2, 65537, 1376243, 2, 65537, 1376244, 2, 65537, 1376245, 2, 65537, 1376246, 2, 65537, 1376247, 2, 65537, 1376248, 2, 65537, 1376249, 2, 65537, 1376250, 2, 65537, 1376251, 2, 65537, 1376252, 2, 65537, 1376253, 2, 65537, 1376254, 2, 65537, 1376255, 2, 65537, 1310720, 2, 65538, 1310721, 0, 196608, 1310722, 0, 196609, 1310723, 0, 196609, 1310724, 0, 196609, 1310725, 0, 196609, 1310726, 0, 196609, 1310727, 0, 196609, 1310728, 0, 196609, 1310729, 0, 196609, 1310730, 0, 196609, 1310731, 0, 196610, 1310732, 1, 65536, 1310733, 1, 65537, 1310734, 1, 65537, 1310735, 1, 65537, 1310736, 1, 65538, 1310737, 0, 196608, 1310738, 0, 196609, 1310739, 0, 196609, 1310740, 0, 196609, 1310741, 0, 196609, 1310742, 0, 196609, 1310743, 0, 196609, 1310744, 0, 196609, 1310745, 0, 196609, 1310746, 0, 196609, 1310747, 0, 196609, 1310748, 0, 196609, 1310749, 0, 196609, 1310750, 0, 196609, 1310751, 0, 196610, 1310752, 2, 65536, 1310753, 2, 65537, 1310754, 2, 65537, 1310755, 2, 65537, 1310756, 2, 65537, 1310757, 2, 65537, 1310758, 2, 65537, 1310759, 2, 65537, 1310760, 2, 65537, 1310761, 2, 65537, 1310762, 2, 65537, 1310763, 2, 65537, 1310764, 2, 65537, 1310765, 2, 65537, 1310766, 2, 65537, 1310767, 2, 65537, 1310768, 2, 65537, 1310769, 2, 65537, 1310770, 2, 65537, 1310771, 2, 65537, 1310772, 2, 65537, 1310773, 2, 65537, 1310774, 2, 65537, 1310775, 2, 65537, 1310776, 2, 65537, 1310777, 2, 65537, 1310778, 2, 65537, 1310779, 2, 65537, 1310780, 2, 65537, 1310781, 2, 65537, 1310782, 2, 65537, 1310783, 2, 65537, 1310784, 2, 65537, 1310785, 2, 65537, 1310786, 2, 65538, 1441770, 2, 65536, 1441771, 2, 65537, 1441772, 2, 65537, 1441773, 2, 65537, 1441774, 2, 65537, 1441775, 2, 65537, 1441776, 2, 65537, 1441777, 2, 65537, 1441778, 2, 65537, 1441779, 2, 65537, 1441780, 2, 65537, 1441781, 2, 65537, 1441782, 2, 65537, 1441783, 2, 65537, 1441784, 2, 65537, 1441785, 2, 65537, 1441786, 2, 65537, 1441787, 2, 65537, 1441788, 2, 65537, 1441789, 2, 65537, 1441790, 2, 65537, 1441791, 2, 65537, 1376256, 2, 65538, 1376257, 0, 196608, 1376258, 0, 196609, 1376259, 0, 196609, 1376260, 0, 196609, 1376261, 0, 196609, 1376262, 0, 196609, 1376263, 0, 196609, 1376264, 0, 196609, 1376265, 0, 196609, 1376266, 0, 196609, 1376267, 0, 196610, 1376268, 1, 65536, 1376269, 1, 65537, 1376270, 1, 65537, 1376271, 1, 65537, 1376272, 1, 65538, 1376273, 0, 196608, 1376274, 0, 196609, 1376275, 0, 196609, 1376276, 0, 196609, 1376277, 0, 196609, 1376278, 0, 196609, 1376279, 0, 196609, 1376280, 0, 196609, 1376281, 0, 196609, 1376282, 0, 196609, 1376283, 0, 196609, 1376284, 0, 196609, 1376285, 0, 196609, 1376286, 0, 196609, 1376287, 0, 196610, 1376288, 2, 65536, 1376289, 2, 65537, 1376290, 2, 65537, 1376291, 2, 65537, 1376292, 2, 65537, 1376293, 2, 65537, 1376294, 2, 65537, 1376295, 2, 65537, 1376296, 2, 65537, 1376297, 2, 65537, 1376298, 2, 65537, 1376299, 2, 65537, 1376300, 2, 65537, 1376301, 2, 65537, 1376302, 2, 65537, 1376303, 2, 65537, 1376304, 2, 65537, 1376305, 2, 65537, 1376306, 2, 65537, 1376307, 2, 65537, 1376308, 2, 65537, 1376309, 2, 65537, 1376310, 2, 65537, 1376311, 2, 65537, 1376312, 2, 65537, 1376313, 2, 65537, 1376314, 2, 65537, 1376315, 2, 65537, 1376316, 2, 65537, 1376317, 2, 65537, 1376318, 2, 65537, 1376319, 2, 65537, 1376320, 2, 65537, 1376321, 2, 65537, 1376322, 2, 65538, 1507306, 2, 65536, 1507307, 2, 65537, 1507308, 2, 65537, 1507309, 2, 65537, 1507310, 2, 65537, 1507311, 2, 65537, 1507312, 2, 65537, 1507313, 2, 65537, 1507314, 2, 65537, 1507315, 2, 65537, 1507316, 2, 65537, 1507317, 2, 65537, 1507318, 2, 65537, 1507319, 2, 65537, 1507320, 2, 65537, 1507321, 2, 65537, 1507322, 2, 65537, 1507323, 2, 65537, 1507324, 2, 65537, 1507325, 2, 65537, 1507326, 2, 65537, 1507327, 2, 65537, 1441792, 2, 65538, 1441793, 0, 196608, 1441794, 0, 196609, 1441795, 0, 196609, 1441796, 0, 196609, 1441797, 0, 196609, 1441798, 0, 196609, 1441799, 0, 196609, 1441800, 0, 196609, 1441801, 0, 196609, 1441802, 0, 196609, 1441803, 0, 196610, 1441804, 1, 65536, 1441805, 1, 65537, 1441806, 1, 65537, 1441807, 1, 65537, 1441808, 1, 65538, 1441809, 0, 196608, 1441810, 0, 196609, 1441811, 0, 196609, 1441812, 0, 196609, 1441813, 0, 196609, 1441814, 0, 196609, 1441815, 0, 196609, 1441816, 0, 196609, 1441817, 0, 196609, 1441818, 0, 196609, 1441819, 0, 196609, 1441820, 0, 196609, 1441821, 0, 196609, 1441822, 0, 196609, 1441823, 0, 196610, 1441824, 2, 65536, 1441825, 2, 65537, 1441826, 2, 65537, 1441827, 2, 65537, 1441828, 2, 65537, 1441829, 2, 65537, 1441830, 2, 65537, 1441831, 2, 65537, 1441832, 2, 65537, 1441833, 2, 65537, 1441834, 2, 65537, 1441835, 2, 65537, 1441836, 2, 65537, 1441837, 2, 65537, 1441838, 2, 65537, 1441839, 2, 65537, 1441840, 2, 65537, 1441841, 2, 65537, 1441842, 2, 65537, 1441843, 2, 65537, 1441844, 2, 65537, 1441845, 2, 65537, 1441846, 2, 65537, 1441847, 2, 65537, 1441848, 2, 65537, 1441849, 2, 65537, 1441850, 2, 65537, 1441851, 2, 65537, 1441852, 2, 65537, 1441853, 2, 65537, 1441854, 2, 65537, 1441855, 2, 65537, 1441856, 2, 65537, 1441857, 2, 65537, 1441858, 2, 131074, 1572842, 2, 65536, 1572843, 2, 65537, 1572844, 2, 65537, 1572845, 2, 65537, 1572846, 2, 65537, 1572847, 2, 65537, 1572848, 2, 65537, 1572849, 2, 65537, 1572850, 2, 65537, 1572851, 2, 65537, 1572852, 2, 65537, 1572853, 2, 65537, 1572854, 2, 65537, 1572855, 2, 65537, 1572856, 2, 65537, 1572857, 2, 65537, 1572858, 2, 65537, 1572859, 2, 65537, 1572860, 2, 65537, 1572861, 2, 65537, 1572862, 2, 65537, 1572863, 2, 65537, 1507328, 2, 65538, 1507329, 0, 262144, 1507330, 0, 262145, 1507331, 0, 262145, 1507332, 0, 262145, 1507333, 0, 262145, 1507334, 0, 262145, 1507335, 0, 262145, 1507336, 0, 262145, 1507337, 0, 262145, 1507338, 0, 262145, 1507339, 0, 262146, 1507340, 1, 65536, 1507341, 1, 65537, 1507342, 1, 65537, 1507343, 1, 65537, 1507344, 1, 65538, 1507345, 0, 262144, 1507346, 0, 262145, 1507347, 0, 262145, 1507348, 0, 262145, 1507349, 0, 262145, 1507350, 0, 262145, 1507351, 0, 262145, 1507352, 0, 262145, 1507353, 0, 262145, 1507354, 0, 262145, 1507355, 0, 262145, 1507356, 0, 262145, 1507357, 0, 262145, 1507358, 0, 262145, 1507359, 0, 262146, 1507360, 2, 65536, 1507361, 2, 65537, 1507362, 2, 65537, 1507363, 2, 65537, 1507364, 2, 65537, 1507365, 2, 65537, 1507366, 2, 65537, 1507367, 2, 65537, 1507368, 2, 65537, 1507369, 2, 65537, 1507370, 2, 65537, 1507371, 2, 65537, 1507372, 2, 65537, 1507373, 2, 65537, 1507374, 2, 65537, 1507375, 2, 65537, 1507376, 2, 65537, 1507377, 2, 65537, 1507378, 2, 65537, 1507379, 2, 65537, 1507380, 2, 65537, 1507381, 2, 65537, 1507382, 2, 65537, 1507383, 2, 65537, 1507384, 2, 65537, 1507385, 2, 65537, 1507386, 2, 65537, 1507387, 2, 65537, 1507388, 2, 65537, 1507389, 2, 65537, 1507390, 2, 65537, 1507391, 2, 65537, 1507392, 2, 65537, 1507393, 2, 65538, 1638378, 2, 65536, 1638379, 2, 65537, 1638380, 2, 65537, 1638381, 2, 65537, 1638382, 2, 65537, 1638383, 2, 65537, 1638384, 2, 65537, 1638385, 2, 65537, 1638386, 2, 65537, 1638387, 2, 65537, 1638388, 2, 65537, 1638389, 2, 65537, 1638390, 2, 65537, 1638391, 2, 65537, 1638392, 2, 65537, 1638393, 2, 65537, 1638394, 2, 65537, 1638395, 2, 65537, 1638396, 2, 65537, 1638397, 2, 65537, 1638398, 2, 65537, 1638399, 2, 65537, 1572864, 2, 65537, 1572865, 2, 1, 1572866, 2, 1, 1572867, 2, 1, 1572868, 2, 1, 1572869, 2, 1, 1572870, 2, 1, 1572871, 2, 1, 1572872, 2, 1, 1572873, 2, 1, 1572874, 2, 1, 1572875, 2, 2, 1572876, 1, 131072, 1572877, 1, 131073, 1572878, 1, 131073, 1572879, 1, 131073, 1572880, 1, 131074, 1572881, 2, 0, 1572882, 2, 1, 1572883, 2, 1, 1572884, 2, 1, 1572885, 2, 1, 1572886, 2, 1, 1572887, 2, 1, 1572888, 2, 1, 1572889, 2, 1, 1572890, 2, 1, 1572891, 2, 1, 1572892, 2, 1, 1572893, 2, 1, 1572894, 2, 1, 1572895, 2, 1, 1572896, 2, 65537, 1572897, 2, 65537, 1572898, 2, 65537, 1572899, 2, 65537, 1572900, 2, 65537, 1572901, 2, 65537, 1572902, 2, 65537, 1572903, 2, 65537, 1572904, 2, 65537, 1572905, 2, 65537, 1572906, 2, 65537, 1572907, 2, 65537, 1572908, 2, 65537, 1572909, 2, 65537, 1572910, 2, 65537, 1572911, 2, 65537, 1572912, 2, 65537, 1572913, 2, 65537, 1572914, 2, 65537, 1572915, 2, 65537, 1572916, 2, 65537, 1572917, 2, 65537, 1572918, 2, 65537, 1572919, 2, 65537, 1572920, 2, 65537, 1572921, 2, 65537, 1572922, 2, 65537, 1572923, 2, 65537, 1572924, 2, 65537, 1572925, 2, 65537, 1572926, 2, 65537, 1572927, 2, 65537, 1572928, 2, 65537, 1572929, 2, 65538, 1703914, 2, 65536, 1703915, 2, 65537, 1703916, 2, 65537, 1703917, 2, 65537, 1703918, 2, 65537, 1703919, 2, 65537, 1703920, 2, 65537, 1703921, 2, 65537, 1703922, 2, 65537, 1703923, 2, 65537, 1703924, 2, 65537, 1703925, 2, 65537, 1703926, 2, 65537, 1703927, 2, 65537, 1703928, 2, 65537, 1703929, 2, 65537, 1703930, 2, 65537, 1703931, 2, 65537, 1703932, 2, 65537, 1703933, 2, 65537, 1703934, 2, 65537, 1703935, 2, 65537, 1638400, 2, 65537, 1638401, 2, 65537, 1638402, 2, 65537, 1638403, 2, 65537, 1638404, 2, 65537, 1638405, 2, 65537, 1638406, 2, 65537, 1638407, 2, 65537, 1638408, 2, 65537, 1638409, 2, 65537, 1638410, 2, 65537, 1638411, 2, 65537, 1638412, 2, 1, 1638413, 2, 1, 1638414, 2, 1, 1638415, 2, 1, 1638416, 2, 1, 1638417, 2, 65537, 1638418, 2, 65537, 1638419, 2, 65537, 1638420, 2, 65537, 1638421, 2, 65537, 1638422, 2, 65537, 1638423, 2, 65537, 1638424, 2, 65537, 1638425, 2, 65537, 1638426, 2, 65537, 1638427, 2, 65537, 1638428, 2, 65537, 1638429, 2, 65537, 1638430, 2, 65537, 1638431, 2, 65537, 1638432, 2, 65537, 1638433, 2, 65537, 1638434, 2, 65537, 1638435, 2, 65537, 1638436, 2, 65537, 1638437, 2, 65537, 1638438, 2, 65537, 1638439, 2, 65537, 1638440, 2, 65537, 1638441, 2, 65537, 1638442, 2, 65537, 1638443, 2, 65537, 1638444, 2, 65537, 1638445, 2, 65537, 1638446, 2, 65537, 1638447, 2, 65537, 1638448, 2, 65537, 1638449, 2, 65537, 1638450, 2, 65537, 1638451, 2, 65537, 1638452, 2, 65537, 1638453, 2, 65537, 1638454, 2, 65537, 1638455, 2, 65537, 1638456, 2, 65537, 1638457, 2, 65537, 1638458, 2, 65537, 1638459, 2, 65537, 1638460, 2, 65537, 1638461, 2, 65537, 1638462, 2, 65537, 1638463, 2, 65537, 1638464, 2, 65537, 1638465, 2, 65538, 1769450, 2, 65536, 1769451, 2, 65537, 1769452, 2, 65537, 1769453, 2, 65537, 1769454, 2, 65537, 1769455, 2, 65537, 1769456, 2, 65537, 1769457, 2, 65537, 1769458, 2, 65537, 1769459, 2, 65537, 1769460, 2, 65537, 1769461, 2, 65537, 1769462, 2, 65537, 1769463, 2, 65537, 1769464, 2, 65537, 1769465, 2, 65537, 1769466, 2, 65537, 1769467, 2, 65537, 1769468, 2, 65537, 1769469, 2, 65537, 1769470, 2, 65537, 1769471, 2, 65537, 1703936, 2, 65537, 1703937, 2, 65537, 1703938, 2, 65537, 1703939, 2, 65537, 1703940, 2, 65537, 1703941, 2, 65537, 1703942, 2, 65537, 1703943, 2, 65537, 1703944, 2, 65537, 1703945, 2, 65537, 1703946, 2, 65537, 1703947, 2, 65537, 1703948, 2, 65537, 1703949, 2, 65537, 1703950, 2, 65537, 1703951, 2, 65537, 1703952, 2, 65537, 1703953, 2, 65537, 1703954, 2, 65537, 1703955, 2, 65537, 1703956, 2, 65537, 1703957, 2, 65537, 1703958, 2, 65537, 1703959, 2, 65537, 1703960, 2, 65537, 1703961, 2, 65537, 1703962, 2, 65537, 1703963, 2, 65537, 1703964, 2, 65537, 1703965, 2, 65537, 1703966, 2, 65537, 1703967, 2, 65537, 1703968, 2, 65537, 1703969, 2, 65537, 1703970, 2, 65537, 1703971, 2, 65537, 1703972, 2, 65537, 1703973, 2, 65537, 1703974, 2, 65537, 1703975, 2, 65537, 1703976, 2, 65537, 1703977, 2, 65537, 1703978, 2, 65537, 1703979, 2, 65537, 1703980, 2, 65537, 1703981, 2, 65537, 1703982, 2, 65537, 1703983, 2, 65537, 1703984, 2, 65537, 1703985, 2, 65537, 1703986, 2, 65537, 1703987, 2, 65537, 1703988, 2, 65537, 1703989, 2, 65537, 1703990, 2, 65537, 1703991, 2, 65537, 1703992, 2, 65537, 1703993, 2, 65537, 1703994, 2, 65537, 1703995, 2, 65537, 1703996, 2, 65537, 1703997, 2, 65537, 1703998, 2, 65537, 1703999, 2, 65537, 1704000, 2, 65537, 1704001, 2, 131074, 1834986, 2, 65536, 1834987, 2, 65537, 1834988, 2, 65537, 1834989, 2, 65537, 1834990, 2, 65537, 1834991, 2, 65537, 1834992, 2, 65537, 1834993, 2, 65537, 1834994, 2, 65537, 1834995, 2, 65537, 1834996, 2, 65537, 1834997, 2, 65537, 1834998, 2, 65537, 1834999, 2, 65537, 1835000, 2, 65537, 1835001, 2, 65537, 1835002, 2, 65537, 1835003, 2, 65537, 1835004, 2, 65537, 1835005, 2, 65537, 1835006, 2, 65537, 1835007, 2, 65537, 1769472, 2, 65537, 1769473, 2, 65537, 1769474, 2, 65537, 1769475, 2, 65537, 1769476, 2, 65537, 1769477, 2, 65537, 1769478, 2, 65537, 1769479, 2, 65537, 1769480, 2, 65537, 1769481, 2, 65537, 1769482, 2, 65537, 1769483, 2, 65537, 1769484, 2, 65537, 1769485, 2, 65537, 1769486, 2, 65537, 1769487, 2, 65537, 1769488, 2, 65537, 1769489, 2, 65537, 1769490, 2, 65537, 1769491, 2, 65537, 1769492, 2, 65537, 1769493, 2, 65537, 1769494, 2, 65537, 1769495, 2, 65537, 1769496, 2, 65537, 1769497, 2, 65537, 1769498, 2, 65537, 1769499, 2, 65537, 1769500, 2, 65537, 1769501, 2, 65537, 1769502, 2, 65537, 1769503, 2, 65537, 1769504, 2, 65537, 1769505, 2, 65537, 1769506, 2, 65537, 1769507, 2, 65537, 1769508, 2, 65537, 1769509, 2, 65537, 1769510, 2, 65537, 1769511, 2, 65537, 1769512, 2, 65537, 1769513, 2, 65537, 1769514, 2, 65537, 1769515, 2, 65537, 1769516, 2, 65537, 1769517, 2, 65537, 1769518, 2, 65537, 1769519, 2, 65537, 1769520, 2, 65537, 1769521, 2, 65537, 1769522, 2, 65537, 1769523, 2, 65537, 1769524, 2, 65537, 1769525, 2, 65537, 1769526, 2, 65537, 1769527, 2, 65537, 1769528, 2, 65537, 1769529, 2, 65537, 1769530, 2, 65537, 1769531, 2, 65537, 1769532, 2, 65537, 1769533, 2, 65537, 1769534, 2, 65537, 1769535, 2, 65537, 1769536, 2, 65538, 1900522, 2, 65536, 1900523, 2, 65537, 1900524, 2, 65537, 1900525, 2, 65537, 1900526, 2, 65537, 1900527, 2, 65537, 1900528, 2, 65537, 1900529, 2, 65537, 1900530, 2, 65537, 1900531, 2, 65537, 1900532, 2, 65537, 1900533, 2, 65537, 1900534, 2, 65537, 1900535, 2, 65537, 1900536, 2, 65537, 1900537, 2, 65537, 1900538, 2, 65537, 1900539, 2, 65537, 1900540, 2, 65537, 1900541, 2, 65537, 1900542, 2, 65537, 1900543, 2, 65537, 1835008, 2, 65537, 1835009, 2, 65537, 1835010, 2, 65537, 1835011, 2, 65537, 1835012, 2, 65537, 1835013, 2, 65537, 1835014, 2, 65537, 1835015, 2, 65537, 1835016, 2, 65537, 1835017, 2, 65537, 1835018, 2, 65537, 1835019, 2, 65537, 1835020, 2, 65537, 1835021, 2, 65537, 1835022, 2, 65537, 1835023, 2, 65537, 1835024, 2, 65537, 1835025, 2, 65537, 1835026, 2, 65537, 1835027, 2, 65537, 1835028, 2, 65537, 1835029, 2, 65537, 1835030, 2, 65537, 1835031, 2, 65537, 1835032, 2, 65537, 1835033, 2, 65537, 1835034, 2, 65537, 1835035, 2, 65537, 1835036, 2, 65537, 1835037, 2, 65537, 1835038, 2, 65537, 1835039, 2, 65537, 1835040, 2, 65537, 1835041, 2, 65537, 1835042, 2, 65537, 1835043, 2, 65537, 1835044, 2, 65537, 1835045, 2, 65537, 1835046, 2, 65537, 1835047, 2, 65537, 1835048, 2, 65537, 1835049, 2, 65537, 1835050, 2, 65537, 1835051, 2, 65537, 1835052, 2, 65537, 1835053, 2, 65537, 1835054, 2, 65537, 1835055, 2, 65537, 1835056, 2, 65537, 1835057, 2, 65537, 1835058, 2, 65537, 1835059, 2, 65537, 1835060, 2, 65537, 1835061, 2, 65537, 1835062, 2, 65537, 1835063, 2, 65537, 1835064, 2, 65537, 1835065, 2, 65537, 1835066, 2, 65537, 1835067, 2, 65537, 1835068, 2, 65537, 1835069, 2, 65537, 1835070, 2, 65537, 1835071, 2, 65537, 1835072, 2, 131074, 1966058, 2, 65536, 1966059, 2, 65537, 1966060, 2, 65537, 1966061, 2, 65537, 1966062, 2, 65537, 1966063, 2, 65537, 1966064, 2, 65537, 1966065, 2, 65537, 1966066, 2, 65537, 1966067, 2, 65537, 1966068, 2, 65537, 1966069, 2, 65537, 1966070, 2, 65537, 1966071, 2, 65537, 1966072, 2, 65537, 1966073, 2, 65537, 1966074, 2, 65537, 1966075, 2, 65537, 1966076, 2, 65537, 1966077, 2, 65537, 1966078, 2, 65537, 1966079, 2, 65537, 1900544, 2, 65537, 1900545, 2, 65537, 1900546, 2, 65537, 1900547, 2, 65537, 1900548, 2, 65537, 1900549, 2, 65537, 1900550, 2, 65537, 1900551, 2, 65537, 1900552, 2, 65537, 1900553, 2, 65537, 1900554, 2, 65537, 1900555, 2, 65537, 1900556, 2, 65537, 1900557, 2, 65537, 1900558, 2, 65537, 1900559, 2, 65537, 1900560, 2, 65537, 1900561, 2, 65537, 1900562, 2, 65537, 1900563, 2, 65537, 1900564, 2, 65537, 1900565, 2, 65537, 1900566, 2, 65537, 1900567, 2, 65537, 1900568, 2, 65537, 1900569, 2, 65537, 1900570, 2, 65537, 1900571, 2, 65537, 1900572, 2, 65537, 1900573, 2, 65537, 1900574, 2, 65537, 1900575, 2, 65537, 1900576, 2, 65537, 1900577, 2, 65537, 1900578, 2, 65537, 1900579, 2, 65537, 1900580, 2, 65537, 1900581, 2, 65537, 1900582, 2, 65537, 1900583, 2, 65537, 1900584, 2, 65537, 1900585, 2, 65537, 1900586, 2, 65537, 1900587, 2, 65537, 1900588, 2, 65537, 1900589, 2, 65537, 1900590, 2, 65537, 1900591, 2, 65537, 1900592, 2, 65537, 1900593, 2, 65537, 1900594, 2, 65537, 1900595, 2, 65537, 1900596, 2, 65537, 1900597, 2, 65537, 1900598, 2, 65537, 1900599, 2, 65537, 1900600, 2, 65537, 1900601, 2, 65537, 1900602, 2, 65537, 1900603, 2, 65537, 1900604, 2, 65537, 1900605, 2, 65537, 1900606, 2, 65537, 1900607, 2, 65538, 2031594, 2, 65536, 2031595, 2, 65537, 2031596, 2, 65537, 2031597, 2, 65537, 2031598, 2, 65537, 2031599, 2, 65537, 2031600, 2, 65537, 2031601, 2, 65537, 2031602, 2, 65537, 2031603, 2, 65537, 2031604, 2, 65537, 2031605, 2, 65537, 2031606, 2, 65537, 2031607, 2, 65537, 2031608, 2, 65537, 2031609, 2, 65537, 2031610, 2, 65537, 2031611, 2, 65537, 2031612, 2, 65537, 2031613, 2, 65537, 2031614, 2, 65537, 2031615, 2, 65537, 1966080, 2, 65537, 1966081, 2, 65537, 1966082, 2, 65537, 1966083, 2, 65537, 1966084, 2, 65537, 1966085, 2, 65537, 1966086, 2, 65537, 1966087, 2, 65537, 1966088, 2, 65537, 1966089, 2, 65537, 1966090, 2, 65537, 1966091, 2, 65537, 1966092, 2, 65537, 1966093, 2, 65537, 1966094, 2, 65537, 1966095, 2, 65537, 1966096, 2, 65537, 1966097, 2, 65537, 1966098, 2, 65537, 1966099, 2, 65537, 1966100, 2, 65537, 1966101, 2, 65537, 1966102, 2, 65537, 1966103, 2, 65537, 1966104, 2, 65537, 1966105, 2, 65537, 1966106, 2, 65537, 1966107, 2, 65537, 1966108, 2, 65537, 1966109, 2, 65537, 1966110, 2, 65537, 1966111, 2, 65537, 1966112, 2, 65537, 1966113, 2, 65537, 1966114, 2, 65537, 1966115, 2, 65537, 1966116, 2, 65537, 1966117, 2, 65537, 1966118, 2, 65537, 1966119, 2, 65537, 1966120, 2, 65537, 1966121, 2, 65537, 1966122, 2, 65537, 1966123, 2, 65537, 1966124, 2, 65537, 1966125, 2, 65537, 1966126, 2, 65537, 1966127, 2, 65537, 1966128, 2, 65537, 1966129, 2, 65537, 1966130, 2, 65537, 1966131, 2, 65537, 1966132, 2, 65537, 1966133, 2, 65537, 1966134, 2, 65537, 1966135, 2, 65537, 1966136, 2, 65537, 1966137, 2, 65537, 1966138, 2, 65537, 1966139, 2, 65537, 1966140, 2, 65537, 1966141, 2, 65537, 1966142, 2, 65537, 1966143, 2, 131074, 2097129, 2, 0, 2097130, 2, 65537, 2097131, 2, 65537, 2097132, 2, 65537, 2097133, 2, 65537, 2097134, 2, 65537, 2097135, 2, 65537, 2097136, 2, 65537, 2097137, 2, 65537, 2097138, 2, 65537, 2097139, 2, 65537, 2097140, 2, 65537, 2097141, 2, 65537, 2097142, 2, 65537, 2097143, 2, 65537, 2097144, 2, 65537, 2097145, 2, 65537, 2097146, 2, 65537, 2097147, 2, 65537, 2097148, 2, 65537, 2097149, 2, 65537, 2097150, 2, 65537, 2097151, 2, 65537, 2031616, 2, 65537, 2031617, 2, 65537, 2031618, 2, 65537, 2031619, 2, 65537, 2031620, 2, 65537, 2031621, 2, 65537, 2031622, 2, 65537, 2031623, 2, 65537, 2031624, 2, 65537, 2031625, 2, 65537, 2031626, 2, 65537, 2031627, 2, 65537, 2031628, 2, 65537, 2031629, 2, 65537, 2031630, 2, 65537, 2031631, 2, 65537, 2031632, 2, 65537, 2031633, 2, 65537, 2031634, 2, 65537, 2031635, 2, 65537, 2031636, 2, 65537, 2031637, 2, 65537, 2031638, 2, 65537, 2031639, 2, 65537, 2031640, 2, 65537, 2031641, 2, 65537, 2031642, 2, 65537, 2031643, 2, 65537, 2031644, 2, 65537, 2031645, 2, 65537, 2031646, 2, 65537, 2031647, 2, 65537, 2031648, 2, 65537, 2031649, 2, 65537, 2031650, 2, 65537, 2031651, 2, 65537, 2031652, 2, 65537, 2031653, 2, 65537, 2031654, 2, 65537, 2031655, 2, 65537, 2031656, 2, 65537, 2031657, 2, 65537, 2031658, 2, 65537, 2031659, 2, 65537, 2031660, 2, 65537, 2031661, 2, 65537, 2031662, 2, 65537, 2031663, 2, 65537, 2031664, 2, 65537, 2031665, 2, 65537, 2031666, 2, 65537, 2031667, 2, 65537, 2031668, 2, 65537, 2031669, 2, 65537, 2031670, 2, 65537, 2031671, 2, 65537, 2031672, 2, 65537, 2031673, 2, 65537, 2031674, 2, 65537, 2031675, 2, 65537, 2031676, 2, 65537, 2031677, 2, 65537, 2031678, 2, 65538, 2162665, 2, 65536, 2162666, 2, 65537, 2162667, 2, 65537, 2162668, 2, 65537, 2162669, 2, 65537, 2162670, 2, 65537, 2162671, 2, 65537, 2162672, 2, 65537, 2162673, 2, 65537, 2162674, 2, 65537, 2162675, 2, 65537, 2162676, 2, 65537, 2162677, 2, 65537, 2162678, 2, 65537, 2162679, 2, 65537, 2162680, 2, 65537, 2162681, 2, 65537, 2162682, 2, 65537, 2162683, 2, 65537, 2162684, 2, 65537, 2162685, 2, 65537, 2162686, 2, 65537, 2162687, 2, 65537, 2097152, 2, 65537, 2097153, 2, 65537, 2097154, 2, 65537, 2097155, 2, 65537, 2097156, 2, 65537, 2097157, 2, 65537, 2097158, 2, 65537, 2097159, 2, 65537, 2097160, 2, 65537, 2097161, 2, 65537, 2097162, 2, 65537, 2097163, 2, 65537, 2097164, 2, 65537, 2097165, 2, 65537, 2097166, 2, 65537, 2097167, 2, 65537, 2097168, 2, 65537, 2097169, 2, 65537, 2097170, 2, 65537, 2097171, 2, 65537, 2097172, 2, 65537, 2097173, 2, 65537, 2097174, 2, 65537, 2097175, 2, 65537, 2097176, 2, 65537, 2097177, 2, 65537, 2097178, 2, 65537, 2097179, 2, 65537, 2097180, 2, 65537, 2097181, 2, 65537, 2097182, 2, 65537, 2097183, 2, 65537, 2097184, 2, 65537, 2097185, 2, 65537, 2097186, 2, 65537, 2097187, 2, 65537, 2097188, 2, 65537, 2097189, 2, 65537, 2097190, 2, 65537, 2097191, 2, 65537, 2097192, 2, 65537, 2097193, 2, 65537, 2097194, 2, 65537, 2097195, 2, 65537, 2097196, 2, 65537, 2097197, 2, 65537, 2097198, 2, 65537, 2097199, 2, 65537, 2097200, 2, 65537, 2097201, 2, 65537, 2097202, 2, 65537, 2097203, 2, 65537, 2097204, 2, 65537, 2097205, 2, 65537, 2097206, 2, 65537, 2097207, 2, 65537, 2097208, 2, 65537, 2097209, 2, 65537, 2097210, 2, 65537, 2097211, 2, 65537, 2097212, 2, 65537, 2097213, 2, 65537, 2097214, 2, 131074, 2228201, 2, 65536, 2228202, 2, 65537, 2228203, 2, 65537, 2228204, 2, 65537, 2228205, 2, 65537, 2228206, 2, 65537, 2228207, 2, 65537, 2228208, 2, 65537, 2228209, 2, 65537, 2228210, 2, 65537, 2228211, 2, 65537, 2228212, 2, 65537, 2228213, 2, 65537, 2228214, 2, 65537, 2228215, 2, 65537, 2228216, 2, 65537, 2228217, 2, 65537, 2228218, 2, 65537, 2228219, 2, 65537, 2228220, 2, 65537, 2228221, 2, 65537, 2228222, 2, 65537, 2228223, 2, 65537, 2162688, 2, 65537, 2162689, 2, 65537, 2162690, 2, 65537, 2162691, 2, 65537, 2162692, 2, 65537, 2162693, 2, 65537, 2162694, 2, 65537, 2162695, 2, 65537, 2162696, 2, 65537, 2162697, 2, 65537, 2162698, 2, 65537, 2162699, 2, 65537, 2162700, 2, 65537, 2162701, 2, 65537, 2162702, 2, 65537, 2162703, 2, 65537, 2162704, 2, 65537, 2162705, 2, 65537, 2162706, 2, 65537, 2162707, 2, 65537, 2162708, 2, 65537, 2162709, 2, 65537, 2162710, 2, 65537, 2162711, 2, 65537, 2162712, 2, 65537, 2162713, 2, 65537, 2162714, 2, 65537, 2162715, 2, 65537, 2162716, 2, 65537, 2162717, 2, 65537, 2162718, 2, 65537, 2162719, 2, 65537, 2162720, 2, 65537, 2162721, 2, 65537, 2162722, 2, 65537, 2162723, 2, 65537, 2162724, 2, 65537, 2162725, 2, 65537, 2162726, 2, 65537, 2162727, 2, 65537, 2162728, 2, 65537, 2162729, 2, 65537, 2162730, 2, 65537, 2162731, 2, 65537, 2162732, 2, 65537, 2162733, 2, 65537, 2162734, 2, 65537, 2162735, 2, 65537, 2162736, 2, 65537, 2162737, 2, 65537, 2162738, 2, 65537, 2162739, 2, 65537, 2162740, 2, 65537, 2162741, 2, 65537, 2162742, 2, 65537, 2162743, 2, 65537, 2162744, 2, 65537, 2162745, 2, 65537, 2162746, 2, 65537, 2162747, 2, 65537, 2162748, 2, 131073, 2162749, 2, 131074, 2293737, 2, 65536, 2293738, 2, 65537, 2293739, 2, 65537, 2293740, 2, 65537, 2293741, 2, 65537, 2293742, 2, 65537, 2293743, 2, 65537, 2293744, 2, 65537, 2293745, 2, 65537, 2293746, 2, 65537, 2293747, 2, 65537, 2293748, 2, 65537, 2293749, 2, 65537, 2293750, 2, 65537, 2293751, 2, 65537, 2293752, 2, 65537, 2293753, 2, 65537, 2293754, 2, 65537, 2293755, 2, 65537, 2293756, 2, 65537, 2293757, 2, 65537, 2293758, 2, 65537, 2293759, 2, 65537, 2228224, 2, 65537, 2228225, 2, 65537, 2228226, 2, 65537, 2228227, 2, 65537, 2228228, 2, 65537, 2228229, 2, 65537, 2228230, 2, 65537, 2228231, 2, 65537, 2228232, 2, 65537, 2228233, 2, 65537, 2228234, 2, 65537, 2228235, 2, 65537, 2228236, 2, 65537, 2228237, 2, 65537, 2228238, 2, 65537, 2228239, 2, 65537, 2228240, 2, 65537, 2228241, 2, 65537, 2228242, 2, 65537, 2228243, 2, 65537, 2228244, 2, 65537, 2228245, 2, 65537, 2228246, 2, 65537, 2228247, 2, 65537, 2228248, 2, 65537, 2228249, 2, 65537, 2228250, 2, 65537, 2228251, 2, 65537, 2228252, 2, 65537, 2228253, 2, 65537, 2228254, 2, 65537, 2228255, 2, 65537, 2228256, 2, 65537, 2228257, 2, 65537, 2228258, 2, 65537, 2228259, 2, 65537, 2228260, 2, 65537, 2228261, 2, 65537, 2228262, 2, 65537, 2228263, 2, 65537, 2228264, 2, 65537, 2228265, 2, 65537, 2228266, 2, 65537, 2228267, 2, 65537, 2228268, 2, 65537, 2228269, 2, 65537, 2228270, 2, 65537, 2228271, 2, 65537, 2228272, 2, 65537, 2228273, 2, 65537, 2228274, 2, 65537, 2228275, 2, 65537, 2228276, 2, 65537, 2228277, 2, 65537, 2228278, 2, 65537, 2228279, 2, 65537, 2228280, 2, 65537, 2228281, 2, 65537, 2228282, 2, 65537, 2228283, 2, 65538, 2359271, 2, 65537, 2359273, 2, 65536, 2359274, 2, 65537, 2359275, 2, 65537, 2359276, 2, 65537, 2359277, 2, 65537, 2359278, 2, 65537, 2359279, 2, 65537, 2359280, 2, 65537, 2359281, 2, 65537, 2359282, 2, 65537, 2359283, 2, 65537, 2359284, 2, 65537, 2359285, 2, 65537, 2359286, 2, 65537, 2359287, 2, 65537, 2359288, 2, 65537, 2359289, 2, 65537, 2359290, 2, 65537, 2359291, 2, 65537, 2359292, 2, 65537, 2359293, 2, 65537, 2359294, 2, 65537, 2359295, 2, 65537, 2293760, 2, 65537, 2293761, 2, 65537, 2293762, 2, 65537, 2293763, 2, 65537, 2293764, 2, 65537, 2293765, 2, 65537, 2293766, 2, 65537, 2293767, 2, 65537, 2293768, 2, 65537, 2293769, 2, 65537, 2293770, 2, 65537, 2293771, 2, 65537, 2293772, 2, 65537, 2293773, 2, 65537, 2293774, 2, 65537, 2293775, 2, 65537, 2293776, 2, 65537, 2293777, 2, 65537, 2293778, 2, 65537, 2293779, 2, 65537, 2293780, 2, 65537, 2293781, 2, 65537, 2293782, 2, 65537, 2293783, 2, 65537, 2293784, 2, 65537, 2293785, 2, 65537, 2293786, 2, 65537, 2293787, 2, 65537, 2293788, 2, 65537, 2293789, 2, 65537, 2293790, 2, 65537, 2293791, 2, 65537, 2293792, 2, 65537, 2293793, 2, 65537, 2293794, 2, 65537, 2293795, 2, 65537, 2293796, 2, 65537, 2293797, 2, 65537, 2293798, 2, 65537, 2293799, 2, 65537, 2293800, 2, 65537, 2293801, 2, 65537, 2293802, 2, 65537, 2293803, 2, 65537, 2293804, 2, 65537, 2293805, 2, 65537, 2293806, 2, 65537, 2293807, 2, 65537, 2293808, 2, 65537, 2293809, 2, 65537, 2293810, 2, 65537, 2293811, 2, 65537, 2293812, 2, 65537, 2293813, 2, 65537, 2293814, 2, 65537, 2293815, 2, 65537, 2293816, 2, 65537, 2293817, 2, 65537, 2293818, 2, 65537, 2293819, 2, 131074, 2424807, 2, 0, 2424808, 2, 1, 2424809, 2, 65537, 2424810, 2, 65537, 2424811, 2, 65537, 2424812, 2, 65537, 2424813, 2, 65537, 2424814, 2, 65537, 2424815, 2, 65537, 2424816, 2, 65537, 2424817, 2, 65537, 2424818, 2, 65537, 2424819, 2, 65537, 2424820, 2, 65537, 2424821, 2, 65537, 2424822, 2, 65537, 2424823, 2, 65537, 2424824, 2, 65537, 2424825, 2, 65537, 2424826, 2, 65537, 2424827, 2, 65537, 2424828, 2, 65537, 2424829, 2, 65537, 2424830, 2, 65537, 2424831, 2, 65537, 2359296, 2, 65537, 2359297, 2, 65537, 2359298, 2, 65537, 2359299, 2, 65537, 2359300, 2, 65537, 2359301, 2, 65537, 2359302, 2, 65537, 2359303, 2, 65537, 2359304, 2, 65537, 2359305, 2, 65537, 2359306, 2, 65537, 2359307, 2, 65537, 2359308, 2, 65537, 2359309, 2, 65537, 2359310, 2, 65537, 2359311, 2, 65537, 2359312, 2, 65537, 2359313, 2, 65537, 2359314, 2, 65537, 2359315, 2, 65537, 2359316, 2, 65537, 2359317, 2, 65537, 2359318, 2, 65537, 2359319, 2, 65537, 2359320, 2, 65537, 2359321, 2, 65537, 2359322, 2, 65537, 2359323, 2, 65537, 2359324, 2, 65537, 2359325, 2, 65537, 2359326, 2, 65537, 2359327, 2, 65537, 2359328, 2, 65537, 2359329, 2, 65537, 2359330, 2, 65537, 2359331, 2, 65537, 2359332, 2, 65537, 2359333, 2, 65537, 2359334, 2, 65537, 2359335, 2, 65537, 2359336, 2, 65537, 2359337, 2, 65537, 2359338, 2, 65537, 2359339, 2, 65537, 2359340, 2, 65537, 2359341, 2, 65537, 2359342, 2, 65537, 2359343, 2, 65537, 2359344, 2, 65537, 2359345, 2, 65537, 2359346, 2, 65537, 2359347, 2, 65537, 2359348, 2, 65537, 2359349, 2, 65537, 2359350, 2, 65537, 2359351, 2, 65537, 2359352, 2, 65537, 2359353, 2, 65537, 2359354, 2, 131074, 2490343, 2, 131072, 2490344, 2, 65537, 2490345, 2, 65537, 2490346, 2, 65537, 2490347, 2, 65537, 2490348, 2, 65537, 2490349, 2, 65537, 2490350, 2, 65537, 2490351, 2, 65537, 2490352, 2, 65537, 2490353, 2, 65537, 2490354, 2, 65537, 2490355, 2, 65537, 2490356, 2, 65537, 2490357, 2, 65537, 2490358, 2, 65537, 2490359, 2, 65537, 2490360, 2, 65537, 2490361, 2, 65537, 2490362, 2, 65537, 2490363, 2, 65537, 2490364, 2, 65537, 2490365, 2, 65537, 2490366, 2, 65537, 2490367, 2, 65537, 2424832, 2, 65537, 2424833, 2, 65537, 2424834, 2, 65537, 2424835, 2, 65537, 2424836, 2, 65537, 2424837, 2, 65537, 2424838, 2, 65537, 2424839, 2, 65537, 2424840, 2, 65537, 2424841, 2, 65537, 2424842, 2, 65537, 2424843, 2, 65537, 2424844, 2, 65537, 2424845, 2, 65537, 2424846, 2, 65537, 2424847, 2, 65537, 2424848, 2, 65537, 2424849, 2, 65537, 2424850, 2, 65537, 2424851, 2, 65537, 2424852, 2, 65537, 2424853, 2, 65537, 2424854, 2, 65537, 2424855, 2, 65537, 2424856, 2, 65537, 2424857, 2, 65537, 2424858, 2, 65537, 2424859, 2, 65537, 2424860, 2, 65537, 2424861, 2, 65537, 2424862, 2, 65537, 2424863, 2, 65537, 2424864, 2, 65537, 2424865, 2, 65537, 2424866, 2, 65537, 2424867, 2, 65537, 2424868, 2, 65537, 2424869, 2, 65537, 2424870, 2, 65537, 2424871, 2, 65537, 2424872, 2, 65537, 2424873, 2, 65537, 2424874, 2, 65537, 2424875, 2, 65537, 2424876, 2, 65537, 2424877, 2, 65537, 2424878, 2, 65537, 2424879, 2, 65537, 2424880, 2, 65537, 2424881, 2, 65537, 2424882, 2, 65537, 2424883, 2, 65537, 2424884, 2, 65537, 2424885, 2, 65537, 2424886, 2, 65537, 2424887, 2, 65537, 2424888, 2, 65537, 2424889, 2, 131074, 2555880, 2, 131072, 2555881, 2, 65537, 2555882, 2, 65537, 2555883, 2, 65537, 2555884, 2, 65537, 2555885, 2, 65537, 2555886, 2, 65537, 2555887, 2, 65537, 2555888, 2, 65537, 2555889, 2, 65537, 2555890, 2, 65537, 2555891, 2, 65537, 2555892, 2, 65537, 2555893, 2, 65537, 2555894, 2, 65537, 2555895, 2, 65537, 2555896, 2, 65537, 2555897, 2, 65537, 2555898, 2, 65537, 2555899, 2, 65537, 2555900, 2, 65537, 2555901, 2, 65537, 2555902, 2, 65537, 2555903, 2, 65537, 2490368, 2, 65537, 2490369, 2, 65537, 2490370, 2, 65537, 2490371, 2, 65537, 2490372, 2, 65537, 2490373, 2, 65537, 2490374, 2, 65537, 2490375, 2, 65537, 2490376, 2, 65537, 2490377, 2, 65537, 2490378, 2, 65537, 2490379, 2, 65537, 2490380, 2, 65537, 2490381, 2, 65537, 2490382, 2, 65537, 2490383, 2, 65537, 2490384, 2, 65537, 2490385, 2, 65537, 2490386, 2, 65537, 2490387, 2, 65537, 2490388, 2, 65537, 2490389, 2, 65537, 2490390, 2, 65537, 2490391, 2, 65537, 2490392, 2, 65537, 2490393, 2, 65537, 2490394, 2, 65537, 2490395, 2, 65537, 2490396, 2, 65537, 2490397, 2, 65537, 2490398, 2, 65537, 2490399, 2, 65537, 2490400, 2, 65537, 2490401, 2, 65537, 2490402, 2, 65537, 2490403, 2, 65537, 2490404, 2, 65537, 2490405, 2, 65537, 2490406, 2, 65537, 2490407, 2, 65537, 2490408, 2, 65537, 2490409, 2, 65537, 2490410, 2, 65537, 2490411, 2, 65537, 2490412, 2, 65537, 2490413, 2, 65537, 2490414, 2, 65537, 2490415, 2, 65537, 2490416, 2, 65537, 2490417, 2, 65537, 2490418, 2, 65537, 2490419, 2, 65537, 2490420, 2, 65537, 2490421, 2, 65537, 2490422, 2, 65537, 2490423, 2, 65537, 2490424, 2, 131074, 2621417, 2, 65536, 2621418, 2, 65537, 2621419, 2, 65537, 2621420, 2, 65537, 2621421, 2, 65537, 2621422, 2, 65537, 2621423, 2, 65537, 2621424, 2, 65537, 2621425, 2, 65537, 2621426, 2, 65537, 2621427, 2, 65537, 2621428, 2, 65537, 2621429, 2, 65537, 2621430, 2, 65537, 2621431, 2, 65537, 2621432, 2, 65537, 2621433, 2, 65537, 2621434, 2, 65537, 2621435, 2, 65537, 2621436, 2, 65537, 2621437, 2, 65537, 2621438, 2, 65537, 2621439, 2, 65537, 2555904, 2, 65537, 2555905, 2, 65537, 2555906, 2, 65537, 2555907, 2, 65537, 2555908, 2, 65537, 2555909, 2, 65537, 2555910, 2, 65537, 2555911, 2, 65537, 2555912, 2, 65537, 2555913, 2, 65537, 2555914, 2, 65537, 2555915, 2, 65537, 2555916, 2, 65537, 2555917, 2, 65537, 2555918, 2, 65537, 2555919, 2, 65537, 2555920, 2, 65537, 2555921, 2, 65537, 2555922, 2, 65537, 2555923, 2, 65537, 2555924, 2, 65537, 2555925, 2, 65537, 2555926, 2, 65537, 2555927, 2, 65537, 2555928, 2, 65537, 2555929, 2, 65537, 2555930, 2, 65537, 2555931, 2, 65537, 2555932, 2, 65537, 2555933, 2, 65537, 2555934, 2, 65537, 2555935, 2, 65537, 2555936, 2, 65537, 2555937, 2, 65537, 2555938, 2, 65537, 2555939, 2, 65537, 2555940, 2, 65537, 2555941, 2, 65537, 2555942, 2, 65537, 2555943, 2, 65537, 2555944, 2, 65537, 2555945, 2, 65537, 2555946, 2, 65537, 2555947, 2, 65537, 2555948, 2, 65537, 2555949, 2, 65537, 2555950, 2, 65537, 2555951, 2, 65537, 2555952, 2, 65537, 2555953, 2, 65537, 2555954, 2, 65537, 2555955, 2, 65537, 2555956, 2, 65537, 2555957, 2, 65537, 2555958, 2, 65537, 2555959, 2, 131074, 2686953, 2, 65536, 2686954, 2, 65537, 2686955, 2, 65537, 2686956, 2, 65537, 2686957, 2, 65537, 2686958, 2, 65537, 2686959, 2, 65537, 2686960, 2, 65537, 2686961, 2, 65537, 2686962, 2, 65537, 2686963, 2, 65537, 2686964, 2, 65537, 2686965, 2, 65537, 2686966, 2, 65537, 2686967, 2, 65537, 2686968, 2, 65537, 2686969, 2, 65537, 2686970, 2, 65537, 2686971, 2, 65537, 2686972, 2, 65537, 2686973, 2, 65537, 2686974, 2, 65537, 2686975, 2, 65537, 2621440, 2, 65537, 2621441, 2, 65537, 2621442, 2, 65537, 2621443, 2, 65537, 2621444, 2, 65537, 2621445, 2, 65537, 2621446, 2, 65537, 2621447, 2, 65537, 2621448, 2, 65537, 2621449, 2, 65537, 2621450, 2, 65537, 2621451, 2, 65537, 2621452, 2, 65537, 2621453, 2, 65537, 2621454, 2, 65537, 2621455, 2, 65537, 2621456, 2, 65537, 2621457, 2, 65537, 2621458, 2, 65537, 2621459, 2, 65537, 2621460, 2, 65537, 2621461, 2, 65537, 2621462, 2, 65537, 2621463, 2, 65537, 2621464, 2, 65537, 2621465, 2, 65537, 2621466, 2, 65537, 2621467, 2, 65537, 2621468, 2, 65537, 2621469, 2, 65537, 2621470, 2, 65537, 2621471, 2, 65537, 2621472, 2, 65537, 2621473, 2, 65537, 2621474, 2, 65537, 2621475, 2, 65537, 2621476, 2, 65537, 2621477, 2, 65537, 2621478, 2, 65537, 2621479, 2, 65537, 2621480, 2, 65537, 2621481, 2, 65537, 2621482, 2, 65537, 2621483, 2, 65537, 2621484, 2, 65537, 2621485, 2, 65537, 2621486, 2, 65537, 2621487, 2, 65537, 2621488, 2, 65537, 2621489, 2, 65537, 2621490, 2, 65537, 2621491, 2, 65537, 2621492, 2, 65537, 2621493, 2, 131073, 2621494, 2, 131074, 2752489, 2, 65536, 2752490, 2, 65537, 2752491, 2, 65537, 2752492, 2, 65537, 2752493, 2, 65537, 2752494, 2, 65537, 2752495, 2, 65537, 2752496, 2, 65537, 2752497, 2, 65537, 2752498, 2, 65537, 2752499, 2, 65537, 2752500, 2, 65537, 2752501, 2, 65537, 2752502, 2, 65537, 2752503, 2, 65537, 2752504, 2, 65537, 2752505, 2, 65537, 2752506, 2, 65537, 2752507, 2, 65537, 2752508, 2, 65537, 2752509, 2, 65537, 2752510, 2, 65537, 2752511, 2, 65537, 2686976, 2, 65537, 2686977, 2, 65537, 2686978, 2, 65537, 2686979, 2, 65537, 2686980, 2, 65537, 2686981, 2, 65537, 2686982, 2, 65537, 2686983, 2, 65537, 2686984, 2, 65537, 2686985, 2, 65537, 2686986, 2, 65537, 2686987, 2, 65537, 2686988, 2, 65537, 2686989, 2, 65537, 2686990, 2, 65537, 2686991, 2, 65537, 2686992, 2, 65537, 2686993, 2, 65537, 2686994, 2, 65537, 2686995, 2, 65537, 2686996, 2, 65537, 2686997, 2, 65537, 2686998, 2, 65537, 2686999, 2, 65537, 2687000, 2, 65537, 2687001, 2, 65537, 2687002, 2, 65537, 2687003, 2, 65537, 2687004, 2, 65537, 2687005, 2, 65537, 2687006, 2, 65537, 2687007, 2, 65537, 2687008, 2, 65537, 2687009, 2, 65537, 2687010, 2, 65537, 2687011, 2, 65537, 2687012, 2, 65537, 2687013, 2, 65537, 2687014, 2, 65537, 2687015, 2, 65537, 2687016, 2, 65537, 2687017, 2, 65537, 2687018, 2, 65537, 2687019, 2, 65537, 2687020, 2, 65537, 2687021, 2, 65537, 2687022, 2, 65537, 2687023, 2, 65537, 2687024, 2, 65537, 2687025, 2, 65537, 2687026, 2, 65537, 2687027, 2, 131073, 2687028, 2, 131074, 2818025, 2, 65536, 2818026, 2, 65537, 2818027, 2, 65537, 2818028, 2, 65537, 2818029, 2, 65537, 2818030, 2, 65537, 2818031, 2, 65537, 2818032, 2, 65537, 2818033, 2, 65537, 2818034, 2, 65537, 2818035, 2, 65537, 2818036, 2, 65537, 2818037, 2, 65537, 2818038, 2, 65537, 2818039, 2, 65537, 2818040, 2, 65537, 2818041, 2, 65537, 2818042, 2, 65537, 2818043, 2, 65537, 2818044, 2, 65537, 2818045, 2, 65537, 2818046, 2, 65537, 2818047, 2, 65537, 2752512, 2, 65537, 2752513, 2, 65537, 2752514, 2, 65537, 2752515, 2, 65537, 2752516, 2, 65537, 2752517, 2, 65537, 2752518, 2, 65537, 2752519, 2, 65537, 2752520, 2, 65537, 2752521, 2, 65537, 2752522, 2, 65537, 2752523, 2, 65537, 2752524, 2, 65537, 2752525, 2, 65537, 2752526, 2, 65537, 2752527, 2, 65537, 2752528, 2, 65537, 2752529, 2, 65537, 2752530, 2, 65537, 2752531, 2, 65537, 2752532, 2, 65537, 2752533, 2, 65537, 2752534, 2, 65537, 2752535, 2, 65537, 2752536, 2, 65537, 2752537, 2, 65537, 2752538, 2, 65537, 2752539, 2, 65537, 2752540, 2, 65537, 2752541, 2, 65537, 2752542, 2, 65537, 2752543, 2, 65537, 2752544, 2, 65537, 2752545, 2, 65537, 2752546, 2, 65537, 2752547, 2, 65537, 2752548, 2, 65537, 2752549, 2, 65537, 2752550, 2, 65537, 2752551, 2, 65537, 2752552, 2, 65537, 2752553, 2, 65537, 2752554, 2, 65537, 2752555, 2, 65537, 2752556, 2, 65537, 2752557, 2, 65537, 2752558, 2, 65537, 2752559, 2, 65537, 2752560, 2, 65537, 2752561, 2, 65537, 2752562, 2, 131074, 2883561, 2, 65536, 2883562, 2, 65537, 2883563, 2, 65537, 2883564, 2, 65537, 2883565, 2, 65537, 2883566, 2, 65537, 2883567, 2, 65537, 2883568, 2, 65537, 2883569, 2, 65537, 2883570, 2, 65537, 2883571, 2, 65537, 2883572, 2, 65537, 2883573, 2, 65537, 2883574, 2, 65537, 2883575, 2, 65537, 2883576, 2, 65537, 2883577, 2, 65537, 2883578, 2, 65537, 2883579, 2, 65537, 2883580, 2, 65537, 2883581, 2, 65537, 2883582, 2, 65537, 2883583, 2, 65537, 2818048, 2, 65537, 2818049, 2, 65537, 2818050, 2, 65537, 2818051, 2, 65537, 2818052, 2, 65537, 2818053, 2, 65537, 2818054, 2, 65537, 2818055, 2, 65537, 2818056, 2, 65537, 2818057, 2, 65537, 2818058, 2, 65537, 2818059, 2, 65537, 2818060, 2, 65537, 2818061, 2, 65537, 2818062, 2, 65537, 2818063, 2, 65537, 2818064, 2, 65537, 2818065, 2, 65537, 2818066, 2, 65537, 2818067, 2, 65537, 2818068, 2, 65537, 2818069, 2, 65537, 2818070, 2, 65537, 2818071, 2, 65537, 2818072, 2, 65537, 2818073, 2, 65537, 2818074, 2, 65537, 2818075, 2, 65537, 2818076, 2, 65537, 2818077, 2, 65537, 2818078, 2, 65537, 2818079, 2, 65537, 2818080, 2, 65537, 2818081, 2, 65537, 2818082, 2, 65537, 2818083, 2, 65537, 2818084, 2, 65537, 2818085, 2, 65537, 2818086, 2, 65537, 2818087, 2, 65537, 2818088, 2, 65537, 2818089, 2, 65537, 2818090, 2, 65537, 2818091, 2, 65537, 2818092, 2, 65537, 2818093, 2, 65537, 2818094, 2, 65537, 2818095, 2, 65537, 2818096, 2, 131073, 2818097, 2, 131074, 2949097, 2, 131072, 2949098, 2, 65537, 2949099, 2, 65537, 2949100, 2, 65537, 2949101, 2, 65537, 2949102, 2, 65537, 2949103, 2, 65537, 2949104, 2, 65537, 2949105, 2, 65537, 2949106, 2, 65537, 2949107, 2, 65537, 2949108, 2, 65537, 2949109, 2, 65537, 2949110, 2, 65537, 2949111, 2, 65537, 2949112, 2, 65537, 2949113, 2, 65537, 2949114, 2, 65537, 2949115, 2, 65537, 2949116, 2, 65537, 2949117, 2, 65537, 2949118, 2, 65537, 2949119, 2, 65537, 2883584, 2, 65537, 2883585, 2, 65537, 2883586, 2, 65537, 2883587, 2, 65537, 2883588, 2, 65537, 2883589, 2, 65537, 2883590, 2, 65537, 2883591, 2, 65537, 2883592, 2, 65537, 2883593, 2, 65537, 2883594, 2, 65537, 2883595, 2, 65537, 2883596, 2, 65537, 2883597, 2, 65537, 2883598, 2, 65537, 2883599, 2, 65537, 2883600, 2, 65537, 2883601, 2, 65537, 2883602, 2, 65537, 2883603, 2, 65537, 2883604, 2, 65537, 2883605, 2, 65537, 2883606, 2, 65537, 2883607, 2, 65537, 2883608, 2, 65537, 2883609, 2, 65537, 2883610, 2, 65537, 2883611, 2, 65537, 2883612, 2, 65537, 2883613, 2, 65537, 2883614, 2, 65537, 2883615, 2, 65537, 2883616, 2, 65537, 2883617, 2, 65537, 2883618, 2, 65537, 2883619, 2, 65537, 2883620, 2, 65537, 2883621, 2, 65537, 2883622, 2, 65537, 2883623, 2, 65537, 2883624, 2, 65537, 2883625, 2, 65537, 2883626, 2, 65537, 2883627, 2, 65537, 2883628, 2, 65537, 2883629, 2, 131073, 2883630, 2, 131073, 2883631, 2, 131074, 3014634, 2, 65536, 3014635, 2, 65537, 3014636, 2, 65537, 3014637, 2, 65537, 3014638, 2, 65537, 3014639, 2, 65537, 3014640, 2, 65537, 3014641, 2, 65537, 3014642, 2, 65537, 3014643, 2, 65537, 3014644, 2, 65537, 3014645, 2, 65537, 3014646, 2, 65537, 3014647, 2, 65537, 3014648, 2, 65537, 3014649, 2, 65537, 3014650, 2, 65537, 3014651, 2, 65537, 3014652, 2, 65537, 3014653, 2, 65537, 3014654, 2, 65537, 3014655, 2, 65537, 2949120, 2, 65537, 2949121, 2, 65537, 2949122, 2, 65537, 2949123, 2, 65537, 2949124, 2, 65537, 2949125, 2, 65537, 2949126, 2, 65537, 2949127, 2, 65537, 2949128, 2, 65537, 2949129, 2, 65537, 2949130, 2, 65537, 2949131, 2, 65537, 2949132, 2, 65537, 2949133, 2, 65537, 2949134, 2, 65537, 2949135, 2, 65537, 2949136, 2, 65537, 2949137, 2, 65537, 2949138, 2, 65537, 2949139, 2, 65537, 2949140, 2, 65537, 2949141, 2, 65537, 2949142, 2, 65537, 2949143, 2, 65537, 2949144, 2, 65537, 2949145, 2, 65537, 2949146, 2, 65537, 2949147, 2, 65537, 2949148, 2, 65537, 2949149, 2, 65537, 2949150, 2, 65537, 2949151, 2, 65537, 2949152, 2, 65537, 2949153, 2, 65537, 2949154, 2, 65537, 2949155, 2, 65537, 2949156, 2, 65537, 2949157, 2, 65537, 2949158, 2, 65537, 2949159, 2, 65537, 2949160, 2, 65537, 2949161, 2, 65537, 2949162, 2, 131073, 2949163, 2, 131073, 2949164, 2, 131074, 3080170, 2, 131072, 3080171, 2, 65537, 3080172, 2, 65537, 3080173, 2, 65537, 3080174, 2, 65537, 3080175, 2, 65537, 3080176, 2, 65537, 3080177, 2, 65537, 3080178, 2, 65537, 3080179, 2, 65537, 3080180, 2, 65537, 3080181, 2, 65537, 3080182, 2, 65537, 3080183, 2, 65537, 3080184, 2, 65537, 3080185, 2, 65537, 3080186, 2, 65537, 3080187, 2, 65537, 3080188, 2, 65537, 3080189, 2, 65537, 3080190, 2, 65537, 3080191, 2, 65537, 3014656, 2, 65537, 3014657, 2, 65537, 3014658, 2, 65537, 3014659, 2, 65537, 3014660, 2, 65537, 3014661, 2, 65537, 3014662, 2, 65537, 3014663, 2, 65537, 3014664, 2, 65537, 3014665, 2, 65537, 3014666, 2, 65537, 3014667, 2, 65537, 3014668, 2, 65537, 3014669, 2, 65537, 3014670, 2, 65537, 3014671, 2, 65537, 3014672, 2, 65537, 3014673, 2, 65537, 3014674, 2, 65537, 3014675, 2, 65537, 3014676, 2, 65537, 3014677, 2, 65537, 3014678, 2, 65537, 3014679, 2, 65537, 3014680, 2, 65537, 3014681, 2, 65537, 3014682, 2, 65537, 3014683, 2, 65537, 3014684, 2, 65537, 3014685, 2, 65537, 3014686, 2, 65537, 3014687, 2, 65537, 3014688, 2, 65537, 3014689, 2, 65537, 3014690, 2, 65537, 3014691, 2, 65537, 3014692, 2, 65537, 3014693, 2, 65537, 3014694, 2, 65537, 3014695, 2, 131073, 3014696, 2, 131073, 3014697, 2, 131074, 3145707, 2, 131072, 3145708, 2, 65537, 3145709, 2, 65537, 3145710, 2, 65537, 3145711, 2, 65537, 3145712, 2, 65537, 3145713, 2, 65537, 3145714, 2, 65537, 3145715, 2, 65537, 3145716, 2, 65537, 3145717, 2, 65537, 3145718, 2, 65537, 3145719, 2, 65537, 3145720, 2, 65537, 3145721, 2, 65537, 3145722, 2, 65537, 3145723, 2, 65537, 3145724, 2, 65537, 3145725, 2, 65537, 3145726, 2, 65537, 3145727, 2, 65537, 3080192, 2, 65537, 3080193, 2, 65537, 3080194, 2, 65537, 3080195, 2, 65537, 3080196, 2, 65537, 3080197, 2, 65537, 3080198, 2, 65537, 3080199, 2, 65537, 3080200, 2, 65537, 3080201, 2, 65537, 3080202, 2, 65537, 3080203, 2, 65537, 3080204, 2, 65537, 3080205, 2, 65537, 3080206, 2, 65537, 3080207, 2, 65537, 3080208, 2, 65537, 3080209, 2, 65537, 3080210, 2, 65537, 3080211, 2, 65537, 3080212, 2, 65537, 3080213, 2, 65537, 3080214, 2, 65537, 3080215, 2, 65537, 3080216, 2, 65537, 3080217, 2, 65537, 3080218, 2, 65537, 3080219, 2, 65537, 3080220, 2, 65537, 3080221, 2, 65537, 3080222, 2, 65537, 3080223, 2, 65537, 3080224, 2, 65537, 3080225, 2, 65537, 3080226, 2, 65537, 3080227, 2, 65537, 3080228, 2, 131073, 3080229, 2, 131073, 3080230, 2, 131074, 3211244, 2, 131072, 3211245, 2, 131073, 3211246, 2, 131073, 3211247, 2, 65537, 3211248, 2, 65537, 3211249, 2, 65537, 3211250, 2, 65537, 3211251, 2, 65537, 3211252, 2, 65537, 3211253, 2, 65537, 3211254, 2, 65537, 3211255, 2, 65537, 3211256, 2, 65537, 3211257, 2, 65537, 3211258, 2, 65537, 3211259, 2, 65537, 3211260, 2, 65537, 3211261, 2, 65537, 3211262, 2, 65537, 3211263, 2, 65537, 3145728, 2, 65537, 3145729, 2, 65537, 3145730, 2, 65537, 3145731, 2, 65537, 3145732, 2, 65537, 3145733, 2, 65537, 3145734, 2, 65537, 3145735, 2, 65537, 3145736, 2, 65537, 3145737, 2, 65537, 3145738, 2, 65537, 3145739, 2, 65537, 3145740, 2, 65537, 3145741, 2, 65537, 3145742, 2, 65537, 3145743, 2, 65537, 3145744, 2, 65537, 3145745, 2, 65537, 3145746, 2, 65537, 3145747, 2, 65537, 3145748, 2, 65537, 3145749, 2, 65537, 3145750, 2, 65537, 3145751, 2, 65537, 3145752, 2, 65537, 3145753, 2, 65537, 3145754, 2, 65537, 3145755, 2, 65537, 3145756, 2, 65537, 3145757, 2, 65537, 3145758, 2, 65537, 3145759, 2, 65537, 3145760, 2, 65537, 3145761, 2, 131073, 3145762, 2, 131073, 3145763, 2, 131074, 3276783, 2, 131072, 3276784, 2, 131073, 3276785, 2, 131073, 3276786, 2, 131073, 3276787, 2, 131073, 3276788, 2, 131073, 3276789, 2, 65537, 3276790, 2, 65537, 3276791, 2, 65537, 3276792, 2, 65537, 3276793, 2, 65537, 3276794, 2, 65537, 3276795, 2, 65537, 3276796, 2, 65537, 3276797, 2, 65537, 3276798, 2, 65537, 3276799, 2, 65537, 3211264, 2, 65537, 3211265, 2, 65537, 3211266, 2, 65537, 3211267, 2, 65537, 3211268, 2, 65537, 3211269, 2, 65537, 3211270, 2, 65537, 3211271, 2, 65537, 3211272, 2, 65537, 3211273, 2, 65537, 3211274, 2, 65537, 3211275, 2, 65537, 3211276, 2, 65537, 3211277, 2, 65537, 3211278, 2, 65537, 3211279, 2, 65537, 3211280, 2, 65537, 3211281, 2, 65537, 3211282, 2, 65537, 3211283, 2, 65537, 3211284, 2, 65537, 3211285, 2, 65537, 3211286, 2, 65537, 3211287, 2, 65537, 3211288, 2, 65537, 3211289, 2, 65537, 3211290, 2, 65537, 3211291, 2, 131073, 3211292, 2, 131073, 3211293, 2, 131073, 3211294, 2, 131073, 3211295, 2, 131073, 3211296, 2, 131074, 3342325, 2, 131072, 3342326, 2, 131073, 3342327, 2, 131073, 3342328, 2, 131073, 3342329, 2, 131073, 3342330, 2, 131073, 3342331, 2, 131073, 3342332, 2, 131073, 3342333, 2, 131073, 3342334, 2, 131073, 3342335, 2, 131073, 3276800, 2, 131073, 3276801, 2, 131073, 3276802, 2, 131073, 3276803, 2, 131073, 3276804, 2, 131073, 3276805, 2, 131073, 3276806, 2, 131073, 3276807, 2, 131073, 3276808, 2, 131073, 3276809, 2, 131073, 3276810, 2, 131073, 3276811, 2, 131073, 3276812, 2, 131073, 3276813, 2, 131073, 3276814, 2, 131073, 3276815, 2, 131073, 3276816, 2, 131073, 3276817, 2, 131073, 3276818, 2, 131073, 3276819, 2, 131073, 3276820, 2, 131073, 3276821, 2, 131073, 3276822, 2, 131073, 3276823, 2, 131073, 3276824, 2, 131073, 3276825, 2, 131073, 3276826, 2, 131074 ) 30 | 31 | [node name="barrel" type="Sprite" parent="Tilesets"] 32 | position = Vector2( 92.4577, 251.086 ) 33 | texture = ExtResource( 5 ) 34 | -------------------------------------------------------------------------------- /Scenes/Maps/Tilesets/Floors1.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=18 format=2] 2 | 3 | [ext_resource path="res://Textures/tiles/grassalt.png" type="Texture" id=1] 4 | [ext_resource path="res://Textures/tiles/dirt.png" type="Texture" id=2] 5 | [ext_resource path="res://Textures/tiles/water.png" type="Texture" id=3] 6 | 7 | [sub_resource type="ConvexPolygonShape2D" id=1] 8 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 9 | 10 | [sub_resource type="ConvexPolygonShape2D" id=2] 11 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 12 | 13 | [sub_resource type="ConvexPolygonShape2D" id=3] 14 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 15 | 16 | [sub_resource type="ConvexPolygonShape2D" id=4] 17 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 18 | 19 | [sub_resource type="ConvexPolygonShape2D" id=5] 20 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 21 | 22 | [sub_resource type="ConvexPolygonShape2D" id=6] 23 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 24 | 25 | [sub_resource type="ConvexPolygonShape2D" id=7] 26 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 27 | 28 | [sub_resource type="ConvexPolygonShape2D" id=8] 29 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 30 | 31 | [sub_resource type="ConvexPolygonShape2D" id=9] 32 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 33 | 34 | [sub_resource type="ConvexPolygonShape2D" id=10] 35 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 36 | 37 | [sub_resource type="ConvexPolygonShape2D" id=11] 38 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 39 | 40 | [sub_resource type="ConvexPolygonShape2D" id=12] 41 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 42 | 43 | [sub_resource type="ConvexPolygonShape2D" id=13] 44 | points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) 45 | 46 | [sub_resource type="TileSet" id=14] 47 | 0/name = "grassalt.png 0" 48 | 0/texture = ExtResource( 1 ) 49 | 0/tex_offset = Vector2( 0, 0 ) 50 | 0/modulate = Color( 1, 1, 1, 1 ) 51 | 0/region = Rect2( 0, 0, 96, 160 ) 52 | 0/tile_mode = 1 53 | 0/autotile/bitmask_mode = 0 54 | 0/autotile/bitmask_flags = [ Vector2( 0, 2 ), 256, Vector2( 0, 3 ), 260, Vector2( 0, 4 ), 4, Vector2( 1, 2 ), 320, Vector2( 1, 4 ), 5, Vector2( 2, 2 ), 64, Vector2( 2, 3 ), 65, Vector2( 2, 4 ), 1 ] 55 | 0/autotile/icon_coordinate = Vector2( 1, 3 ) 56 | 0/autotile/tile_size = Vector2( 32, 32 ) 57 | 0/autotile/spacing = 0 58 | 0/autotile/occluder_map = [ ] 59 | 0/autotile/navpoly_map = [ ] 60 | 0/autotile/priority_map = [ ] 61 | 0/autotile/z_index_map = [ ] 62 | 0/occluder_offset = Vector2( 0, 0 ) 63 | 0/navigation_offset = Vector2( 0, 0 ) 64 | 0/shapes = [ ] 65 | 0/z_index = 0 66 | 1/name = "dirt.png 1" 67 | 1/texture = ExtResource( 2 ) 68 | 1/tex_offset = Vector2( 0, 0 ) 69 | 1/modulate = Color( 1, 1, 1, 1 ) 70 | 1/region = Rect2( 0, 64, 96, 96 ) 71 | 1/tile_mode = 1 72 | 1/autotile/bitmask_mode = 0 73 | 1/autotile/bitmask_flags = [ Vector2( 0, 0 ), 256, Vector2( 0, 1 ), 260, Vector2( 0, 2 ), 4, Vector2( 1, 0 ), 320, Vector2( 1, 2 ), 5, Vector2( 2, 0 ), 64, Vector2( 2, 1 ), 65, Vector2( 2, 2 ), 1 ] 74 | 1/autotile/icon_coordinate = Vector2( 1, 1 ) 75 | 1/autotile/tile_size = Vector2( 32, 32 ) 76 | 1/autotile/spacing = 0 77 | 1/autotile/occluder_map = [ ] 78 | 1/autotile/navpoly_map = [ ] 79 | 1/autotile/priority_map = [ ] 80 | 1/autotile/z_index_map = [ ] 81 | 1/occluder_offset = Vector2( 0, 0 ) 82 | 1/navigation_offset = Vector2( 0, 0 ) 83 | 1/shapes = [ ] 84 | 1/z_index = 0 85 | 2/name = "water.png 2" 86 | 2/texture = ExtResource( 3 ) 87 | 2/tex_offset = Vector2( 0, 0 ) 88 | 2/modulate = Color( 1, 1, 1, 1 ) 89 | 2/region = Rect2( 4, 65, 91, 92 ) 90 | 2/tile_mode = 1 91 | 2/autotile/bitmask_mode = 0 92 | 2/autotile/bitmask_flags = [ Vector2( 0, 0 ), 256, Vector2( 0, 1 ), 260, Vector2( 0, 2 ), 4, Vector2( 1, 0 ), 320, Vector2( 1, 2 ), 5, Vector2( 2, 0 ), 64, Vector2( 2, 1 ), 65, Vector2( 2, 2 ), 1 ] 93 | 2/autotile/icon_coordinate = Vector2( 1, 1 ) 94 | 2/autotile/tile_size = Vector2( 32, 32 ) 95 | 2/autotile/spacing = 0 96 | 2/autotile/occluder_map = [ ] 97 | 2/autotile/navpoly_map = [ ] 98 | 2/autotile/priority_map = [ ] 99 | 2/autotile/z_index_map = [ ] 100 | 2/occluder_offset = Vector2( 0, 0 ) 101 | 2/navigation_offset = Vector2( 0, 0 ) 102 | 2/shapes = [ { 103 | "autotile_coord": Vector2( 1, 1 ), 104 | "one_way": false, 105 | "one_way_margin": 1.0, 106 | "shape": SubResource( 1 ), 107 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 108 | }, { 109 | "autotile_coord": Vector2( 1, 1 ), 110 | "one_way": false, 111 | "one_way_margin": 1.0, 112 | "shape": SubResource( 2 ), 113 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 114 | }, { 115 | "autotile_coord": Vector2( 1, 0 ), 116 | "one_way": false, 117 | "one_way_margin": 1.0, 118 | "shape": SubResource( 3 ), 119 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 120 | }, { 121 | "autotile_coord": Vector2( 1, 0 ), 122 | "one_way": false, 123 | "one_way_margin": 1.0, 124 | "shape": SubResource( 4 ), 125 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 126 | }, { 127 | "autotile_coord": Vector2( 0, 0 ), 128 | "one_way": false, 129 | "one_way_margin": 1.0, 130 | "shape": SubResource( 5 ), 131 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 132 | }, { 133 | "autotile_coord": Vector2( 0, 0 ), 134 | "one_way": false, 135 | "one_way_margin": 1.0, 136 | "shape": SubResource( 6 ), 137 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 138 | }, { 139 | "autotile_coord": Vector2( 0, 1 ), 140 | "one_way": false, 141 | "one_way_margin": 1.0, 142 | "shape": SubResource( 7 ), 143 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 144 | }, { 145 | "autotile_coord": Vector2( 0, 2 ), 146 | "one_way": false, 147 | "one_way_margin": 1.0, 148 | "shape": SubResource( 8 ), 149 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 150 | }, { 151 | "autotile_coord": Vector2( 0, 2 ), 152 | "one_way": false, 153 | "one_way_margin": 1.0, 154 | "shape": SubResource( 9 ), 155 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 156 | }, { 157 | "autotile_coord": Vector2( 1, 2 ), 158 | "one_way": false, 159 | "one_way_margin": 1.0, 160 | "shape": SubResource( 10 ), 161 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 162 | }, { 163 | "autotile_coord": Vector2( 2, 2 ), 164 | "one_way": false, 165 | "one_way_margin": 1.0, 166 | "shape": SubResource( 11 ), 167 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 168 | }, { 169 | "autotile_coord": Vector2( 2, 1 ), 170 | "one_way": false, 171 | "one_way_margin": 1.0, 172 | "shape": SubResource( 12 ), 173 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 174 | }, { 175 | "autotile_coord": Vector2( 2, 0 ), 176 | "one_way": false, 177 | "one_way_margin": 1.0, 178 | "shape": SubResource( 13 ), 179 | "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) 180 | } ] 181 | 2/z_index = 0 182 | 183 | [node name="Floors" type="TileMap"] 184 | tile_set = SubResource( 14 ) 185 | cell_size = Vector2( 32, 32 ) 186 | format = 1 187 | -------------------------------------------------------------------------------- /Scripts/Control.gd: -------------------------------------------------------------------------------- 1 | extends Control 2 | 3 | var Dialoug 4 | var HoldingDialoug = [] 5 | var HoldingNames = [] 6 | var page = 0 7 | 8 | onready var DiaUI = self 9 | onready var DiaTextUI = $DiaHolder/DiaText 10 | onready var DiaNamesUI = $DiaHolder/NamesUI/NamesLabel 11 | onready var DiaNamesUIHolder = $DiaHolder/NamesUI 12 | 13 | signal StopMovement 14 | signal AllowMovement 15 | 16 | 17 | func _process(delta): 18 | updateDialouge() 19 | 20 | 21 | func startDialouge(): 22 | DiaUI.visible = true 23 | HoldingDialoug = Dialoug.Strings 24 | HoldingNames = Dialoug.Names 25 | page = 0 26 | DiaTextUI.bbcode_text = HoldingDialoug[0] 27 | DiaNamesUI.text = HoldingNames[0] 28 | emit_signal("StopMovement") 29 | 30 | func updateDialouge(): 31 | if(DiaUI.visible == true): 32 | if(Input.is_action_just_pressed("ui_accept")): 33 | DiaNamesUIHolder.visible = true 34 | if(page == HoldingDialoug.size()-1): 35 | DiaUI.visible = false 36 | emit_signal("AllowMovement") 37 | if(page < HoldingDialoug.size()-1): 38 | page += 1 39 | DiaTextUI.bbcode_text = HoldingDialoug[page] 40 | DiaNamesUI.text = HoldingNames[page] 41 | if(HoldingNames[page] == "."): 42 | DiaNamesUIHolder.visible = false 43 | 44 | func LoadDialouge(DiaTres): 45 | Dialoug = load(DiaTres) -------------------------------------------------------------------------------- /Scripts/DialougeClass.gd: -------------------------------------------------------------------------------- 1 | extends Resource 2 | class_name DialougeResource 3 | 4 | export(Array) var Strings = [] 5 | export(Array) var Names = [] -------------------------------------------------------------------------------- /Scripts/Quets/LittleRena.gd: -------------------------------------------------------------------------------- 1 | extends Sprite 2 | 3 | var Dia_RenaIsNotHungry = "res://DialougFiles/RenaDoesntWantToEat.tres" 4 | var VarDia_GotTheHamburger = false 5 | 6 | 7 | 8 | func _on_Area2D_body_entered(body): 9 | if(body.is_in_group("Player")): 10 | if(VarDia_GotTheHamburger == false): 11 | body.DiaUI.LoadDialouge(Dia_RenaIsNotHungry) 12 | body.DiaUI.startDialouge() 13 | body.hasfood = true 14 | VarDia_GotTheHamburger = true -------------------------------------------------------------------------------- /Scripts/Quets/LittleTimy.gd: -------------------------------------------------------------------------------- 1 | extends Sprite 2 | 3 | var Dia_TimyIntroduction = "res://DialougFiles/TimmyIntro.tres" 4 | var Dia_TimyIsFat = "res://DialougFiles/TimmyWantsFood.tres" 5 | var Dia_TimyThanksYou = "res://DialougFiles/TimyThanks.tres" 6 | var Dia_TimyThanksYouAgain = "res://DialougFiles/TimyThanksAgain.tres" 7 | var VarDia_TmmyFirstTime = true 8 | var VarDia_TimmyIsHungry = false 9 | var VarDia_FoodAquired = false 10 | var VarDia_ThanksMister = false 11 | 12 | func _on_Area2D_body_shape_entered(body_id, body, body_shape, area_shape): 13 | if(body.is_in_group("Player")): 14 | if(VarDia_FoodAquired == true): 15 | body.DiaUI.LoadDialouge(Dia_TimyThanksYouAgain) 16 | body.DiaUI.startDialouge() 17 | if(VarDia_TimmyIsHungry == true): 18 | if(body.hasfood): 19 | body.DiaUI.LoadDialouge(Dia_TimyThanksYou) 20 | body.DiaUI.startDialouge() 21 | VarDia_TimmyIsHungry = false 22 | VarDia_FoodAquired = true 23 | else: 24 | body.DiaUI.LoadDialouge(Dia_TimyIsFat) 25 | body.DiaUI.startDialouge() 26 | print("2") 27 | if(VarDia_TmmyFirstTime == true): 28 | body.DiaUI.LoadDialouge(Dia_TimyIntroduction) 29 | body.DiaUI.startDialouge() 30 | VarDia_TmmyFirstTime = false 31 | VarDia_TimmyIsHungry = true 32 | print("1") -------------------------------------------------------------------------------- /Textures/burger-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/burger-512.png -------------------------------------------------------------------------------- /Textures/burger-512.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/burger-512.png-cf4129cd4c9fc7752f47231c2cbf63dc.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/burger-512.png" 13 | dest_files=[ "res://.import/burger-512.png-cf4129cd4c9fc7752f47231c2cbf63dc.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/burger-512.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/burger-512.xcf -------------------------------------------------------------------------------- /Textures/tiles/barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/barrel.png -------------------------------------------------------------------------------- /Textures/tiles/barrel.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/barrel.png-fc1e60518b632d5501a21baede9130bb.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/barrel.png" 13 | dest_files=[ "res://.import/barrel.png-fc1e60518b632d5501a21baede9130bb.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/brackish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/brackish.png -------------------------------------------------------------------------------- /Textures/tiles/brackish.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/brackish.png-d48ae26ec67bb9549c7f5707d84ea96a.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/brackish.png" 13 | dest_files=[ "res://.import/brackish.png-d48ae26ec67bb9549c7f5707d84ea96a.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/bridges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/bridges.png -------------------------------------------------------------------------------- /Textures/tiles/bridges.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/bridges.png-d6b7ef97e2c9d57e354c52d872b4ff72.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/bridges.png" 13 | dest_files=[ "res://.import/bridges.png-d6b7ef97e2c9d57e354c52d872b4ff72.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/buckets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/buckets.png -------------------------------------------------------------------------------- /Textures/tiles/buckets.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/buckets.png-8e47396274c66aafb9c6edabaf8d091a.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/buckets.png" 13 | dest_files=[ "res://.import/buckets.png-8e47396274c66aafb9c6edabaf8d091a.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/cabinets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/cabinets.png -------------------------------------------------------------------------------- /Textures/tiles/cabinets.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/cabinets.png-f888ce82b5db24e81b6a62b36dd3325d.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/cabinets.png" 13 | dest_files=[ "res://.import/cabinets.png-f888ce82b5db24e81b6a62b36dd3325d.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/castle_lightsources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/castle_lightsources.png -------------------------------------------------------------------------------- /Textures/tiles/castle_lightsources.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/castle_lightsources.png-aecb5f00d6639cbfbaa47e07167d4406.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/castle_lightsources.png" 13 | dest_files=[ "res://.import/castle_lightsources.png-aecb5f00d6639cbfbaa47e07167d4406.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/castle_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/castle_outside.png -------------------------------------------------------------------------------- /Textures/tiles/castle_outside.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/castle_outside.png-5ee93c675f9ee77600acd080a7b6d1a7.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/castle_outside.png" 13 | dest_files=[ "res://.import/castle_outside.png-5ee93c675f9ee77600acd080a7b6d1a7.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/castlefloors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/castlefloors.png -------------------------------------------------------------------------------- /Textures/tiles/castlefloors.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/castlefloors.png-9787246830db3c4ba33cdf0158c3c44b.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/castlefloors.png" 13 | dest_files=[ "res://.import/castlefloors.png-9787246830db3c4ba33cdf0158c3c44b.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/castlefloors_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/castlefloors_outside.png -------------------------------------------------------------------------------- /Textures/tiles/castlefloors_outside.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/castlefloors_outside.png-f8fac066498b3d13d4b40e9042dd7041.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/castlefloors_outside.png" 13 | dest_files=[ "res://.import/castlefloors_outside.png-f8fac066498b3d13d4b40e9042dd7041.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/castlewalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/castlewalls.png -------------------------------------------------------------------------------- /Textures/tiles/castlewalls.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/castlewalls.png-1f9181b3bdb8bb070ab50e68b31bcbd2.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/castlewalls.png" 13 | dest_files=[ "res://.import/castlewalls.png-1f9181b3bdb8bb070ab50e68b31bcbd2.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/cement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/cement.png -------------------------------------------------------------------------------- /Textures/tiles/cement.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/cement.png-e5d5d97905755cccb70fbdfa5f85d435.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/cement.png" 13 | dest_files=[ "res://.import/cement.png-e5d5d97905755cccb70fbdfa5f85d435.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/cementstair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/cementstair.png -------------------------------------------------------------------------------- /Textures/tiles/cementstair.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/cementstair.png-893275044ae87f762a7d8e28b2b12006.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/cementstair.png" 13 | dest_files=[ "res://.import/cementstair.png-893275044ae87f762a7d8e28b2b12006.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/chests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/chests.png -------------------------------------------------------------------------------- /Textures/tiles/chests.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/chests.png-4f0c346558961960df425f9e4ecbf949.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/chests.png" 13 | dest_files=[ "res://.import/chests.png-4f0c346558961960df425f9e4ecbf949.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/country.png -------------------------------------------------------------------------------- /Textures/tiles/country.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/country.png-388440b061ca876229443b7837716ba8.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/country.png" 13 | dest_files=[ "res://.import/country.png-388440b061ca876229443b7837716ba8.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/cup.png -------------------------------------------------------------------------------- /Textures/tiles/cup.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/cup.png-155c112b05fd48c7d893e493b395757b.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/cup.png" 13 | dest_files=[ "res://.import/cup.png-155c112b05fd48c7d893e493b395757b.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/dirt.png -------------------------------------------------------------------------------- /Textures/tiles/dirt.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/dirt.png-c0fabf265cbf0b8c8753e0d4ab5b2718.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/dirt.png" 13 | dest_files=[ "res://.import/dirt.png-c0fabf265cbf0b8c8753e0d4ab5b2718.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/dirt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/dirt2.png -------------------------------------------------------------------------------- /Textures/tiles/dirt2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/dirt2.png-70f1cb8bf3404fc2b2f4257ed4c538fc.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/dirt2.png" 13 | dest_files=[ "res://.import/dirt2.png-70f1cb8bf3404fc2b2f4257ed4c538fc.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/dungeon.png -------------------------------------------------------------------------------- /Textures/tiles/dungeon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/dungeon.png-467f54bd850313fa7187cbbe8a9908e9.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/dungeon.png" 13 | dest_files=[ "res://.import/dungeon.png-467f54bd850313fa7187cbbe8a9908e9.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/grass.png -------------------------------------------------------------------------------- /Textures/tiles/grass.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/grass.png-c6241e4e1cbc57465556f6e3737b00c8.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/grass.png" 13 | dest_files=[ "res://.import/grass.png-c6241e4e1cbc57465556f6e3737b00c8.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/grassalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/grassalt.png -------------------------------------------------------------------------------- /Textures/tiles/grassalt.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/grassalt.png-c22b8442e041d8625e081f45d375b0dd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/grassalt.png" 13 | dest_files=[ "res://.import/grassalt.png-c22b8442e041d8625e081f45d375b0dd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/hole.png -------------------------------------------------------------------------------- /Textures/tiles/hole.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/hole.png-ea9f5df28f4a125e27f91ea4d61b5ea0.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/hole.png" 13 | dest_files=[ "res://.import/hole.png-ea9f5df28f4a125e27f91ea4d61b5ea0.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/holek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/holek.png -------------------------------------------------------------------------------- /Textures/tiles/holek.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/holek.png-a476c04074bb13a4a9ed7522f1c79828.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/holek.png" 13 | dest_files=[ "res://.import/holek.png-a476c04074bb13a4a9ed7522f1c79828.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/holemid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/holemid.png -------------------------------------------------------------------------------- /Textures/tiles/holemid.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/holemid.png-134f6b6bca9d30e25df8900655ef51d4.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/holemid.png" 13 | dest_files=[ "res://.import/holemid.png-134f6b6bca9d30e25df8900655ef51d4.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/house.png -------------------------------------------------------------------------------- /Textures/tiles/house.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/house.png-709439552be9055abf6b43784d295939.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/house.png" 13 | dest_files=[ "res://.import/house.png-709439552be9055abf6b43784d295939.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/inside.png -------------------------------------------------------------------------------- /Textures/tiles/inside.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/inside.png-0b9473b3fbd65ee994631b7c23332e5b.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/inside.png" 13 | dest_files=[ "res://.import/inside.png-0b9473b3fbd65ee994631b7c23332e5b.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/kitchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/kitchen.png -------------------------------------------------------------------------------- /Textures/tiles/kitchen.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/kitchen.png-93d86a629e2cfc476bae90d495ab911b.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/kitchen.png" 13 | dest_files=[ "res://.import/kitchen.png-93d86a629e2cfc476bae90d495ab911b.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/lava.png -------------------------------------------------------------------------------- /Textures/tiles/lava.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/lava.png-459917c9d26e90f81720488a9566c1d3.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/lava.png" 13 | dest_files=[ "res://.import/lava.png-459917c9d26e90f81720488a9566c1d3.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/lavarock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/lavarock.png -------------------------------------------------------------------------------- /Textures/tiles/lavarock.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/lavarock.png-3abec49259ab57896a5c93baf71b76c3.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/lavarock.png" 13 | dest_files=[ "res://.import/lavarock.png-3abec49259ab57896a5c93baf71b76c3.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/mountains.png -------------------------------------------------------------------------------- /Textures/tiles/mountains.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/mountains.png-b23bc7a735735c4823eb660bd532c674.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/mountains.png" 13 | dest_files=[ "res://.import/mountains.png-b23bc7a735735c4823eb660bd532c674.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/rock.png -------------------------------------------------------------------------------- /Textures/tiles/rock.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/rock.png-752ff8ed6372abb351694663322625c4.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/rock.png" 13 | dest_files=[ "res://.import/rock.png-752ff8ed6372abb351694663322625c4.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/signs.png -------------------------------------------------------------------------------- /Textures/tiles/signs.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/signs.png-909effa2cbb15824ce84b6a521e41cec.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/signs.png" 13 | dest_files=[ "res://.import/signs.png-909effa2cbb15824ce84b6a521e41cec.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/stairs.png -------------------------------------------------------------------------------- /Textures/tiles/stairs.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/stairs.png-229d19a21200644e76aa381df18b26f6.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/stairs.png" 13 | dest_files=[ "res://.import/stairs.png-229d19a21200644e76aa381df18b26f6.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/treetop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/treetop.png -------------------------------------------------------------------------------- /Textures/tiles/treetop.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/treetop.png-1a57f8cbb63942c2e8bdd5760ead7041.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/treetop.png" 13 | dest_files=[ "res://.import/treetop.png-1a57f8cbb63942c2e8bdd5760ead7041.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/trunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/trunk.png -------------------------------------------------------------------------------- /Textures/tiles/trunk.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/trunk.png-287a187b2ad5d91d6a3858da2dfa9662.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/trunk.png" 13 | dest_files=[ "res://.import/trunk.png-287a187b2ad5d91d6a3858da2dfa9662.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/victoria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/victoria.png -------------------------------------------------------------------------------- /Textures/tiles/victoria.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/victoria.png-718c8998c5e488f0fdbed5ad647407dd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/victoria.png" 13 | dest_files=[ "res://.import/victoria.png-718c8998c5e488f0fdbed5ad647407dd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/water.png -------------------------------------------------------------------------------- /Textures/tiles/water.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/water.png-40fa2ac6496cab5131084fb527d030f3.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/water.png" 13 | dest_files=[ "res://.import/water.png-40fa2ac6496cab5131084fb527d030f3.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/waterfall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/waterfall.png -------------------------------------------------------------------------------- /Textures/tiles/waterfall.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/waterfall.png-1cf2f39d776b0bc70b90fae3afd5a0c3.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/waterfall.png" 13 | dest_files=[ "res://.import/waterfall.png-1cf2f39d776b0bc70b90fae3afd5a0c3.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /Textures/tiles/watergrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/Textures/tiles/watergrass.png -------------------------------------------------------------------------------- /Textures/tiles/watergrass.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/watergrass.png-75ec3ce7295404b3a7b97aabab30e0f5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Textures/tiles/watergrass.png" 13 | dest_files=[ "res://.import/watergrass.png-75ec3ce7295404b3a7b97aabab30e0f5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=false 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxIsJoe/GodotDialogueResourceSystem/1825fb71754588d665186835cb8b6c11c1366cea/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ { 12 | "base": "Resource", 13 | "class": "DialougeResource", 14 | "language": "GDScript", 15 | "path": "res://Scripts/DialougeClass.gd" 16 | } ] 17 | _global_script_class_icons={ 18 | "DialougeResource": "" 19 | } 20 | 21 | [application] 22 | 23 | config/name="DiaSysRes" 24 | run/main_scene="res://Scenes/Maps/TestWorld.tscn" 25 | config/icon="res://icon.png" 26 | 27 | [rendering] 28 | 29 | environment/default_environment="res://default_env.tres" 30 | --------------------------------------------------------------------------------