-- -- PostgreSQL database dump -- -- Dumped from database version 12.5 (Ubuntu 12.5-0ubuntu0.20.04.1) -- Dumped by pg_dump version 12.5 (Ubuntu 12.5-0ubuntu0.20.04.1) -- Started on 2021-05-20 13:26:40 -03 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- TOC entry 3 (class 2615 OID 2200) -- Name: public; Type: SCHEMA; Schema: -; Owner: wongames -- CREATE SCHEMA IF NOT EXISTS public; ALTER SCHEMA public OWNER TO wongames; -- -- TOC entry 3432 (class 0 OID 0) -- Dependencies: 3 -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres -- COMMENT ON SCHEMA public IS 'standard public schema'; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- TOC entry 221 (class 1259 OID 548967) -- Name: banners; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.banners ( id integer NOT NULL, title character varying(255), subtitle text, published_at timestamp with time zone, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.banners OWNER TO wongames; -- -- TOC entry 223 (class 1259 OID 548980) -- Name: banners_components; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.banners_components ( id integer NOT NULL, field character varying(255) NOT NULL, "order" integer NOT NULL, component_type character varying(255) NOT NULL, component_id integer NOT NULL, banner_id integer NOT NULL ); ALTER TABLE public.banners_components OWNER TO wongames; -- -- TOC entry 222 (class 1259 OID 548978) -- Name: banners_components_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.banners_components_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.banners_components_id_seq OWNER TO wongames; -- -- TOC entry 3433 (class 0 OID 0) -- Dependencies: 222 -- Name: banners_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.banners_components_id_seq OWNED BY public.banners_components.id; -- -- TOC entry 220 (class 1259 OID 548965) -- Name: banners_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.banners_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.banners_id_seq OWNER TO wongames; -- -- TOC entry 3434 (class 0 OID 0) -- Dependencies: 220 -- Name: banners_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.banners_id_seq OWNED BY public.banners.id; -- -- TOC entry 225 (class 1259 OID 548996) -- Name: categories; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.categories ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.categories OWNER TO wongames; -- -- TOC entry 231 (class 1259 OID 549047) -- Name: categories_games__games_categories; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.categories_games__games_categories ( id integer NOT NULL, game_id integer, category_id integer ); ALTER TABLE public.categories_games__games_categories OWNER TO wongames; -- -- TOC entry 230 (class 1259 OID 549045) -- Name: categories_games__games_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.categories_games__games_categories_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.categories_games__games_categories_id_seq OWNER TO wongames; -- -- TOC entry 3435 (class 0 OID 0) -- Dependencies: 230 -- Name: categories_games__games_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.categories_games__games_categories_id_seq OWNED BY public.categories_games__games_categories.id; -- -- TOC entry 224 (class 1259 OID 548994) -- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.categories_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.categories_id_seq OWNER TO wongames; -- -- TOC entry 3436 (class 0 OID 0) -- Dependencies: 224 -- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id; -- -- TOC entry 205 (class 1259 OID 548878) -- Name: components_page_buttons; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_buttons ( id integer NOT NULL, label character varying(255), link character varying(255) ); ALTER TABLE public.components_page_buttons OWNER TO wongames; -- -- TOC entry 204 (class 1259 OID 548876) -- Name: components_page_buttons_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_buttons_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_buttons_id_seq OWNER TO wongames; -- -- TOC entry 3437 (class 0 OID 0) -- Dependencies: 204 -- Name: components_page_buttons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_buttons_id_seq OWNED BY public.components_page_buttons.id; -- -- TOC entry 207 (class 1259 OID 548889) -- Name: components_page_highlights; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_highlights ( id integer NOT NULL, title character varying(255), subtitle text, "buttonLabel" character varying(255), "buttonLink" character varying(255), alignment character varying(255) ); ALTER TABLE public.components_page_highlights OWNER TO wongames; -- -- TOC entry 206 (class 1259 OID 548887) -- Name: components_page_highlights_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_highlights_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_highlights_id_seq OWNER TO wongames; -- -- TOC entry 3438 (class 0 OID 0) -- Dependencies: 206 -- Name: components_page_highlights_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_highlights_id_seq OWNED BY public.components_page_highlights.id; -- -- TOC entry 209 (class 1259 OID 548900) -- Name: components_page_popular_games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_popular_games ( id integer NOT NULL, title character varying(255) ); ALTER TABLE public.components_page_popular_games OWNER TO wongames; -- -- TOC entry 211 (class 1259 OID 548908) -- Name: components_page_popular_games__games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_popular_games__games ( id integer NOT NULL, components_page_popular_game_id integer, game_id integer ); ALTER TABLE public.components_page_popular_games__games OWNER TO wongames; -- -- TOC entry 210 (class 1259 OID 548906) -- Name: components_page_popular_games__games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_popular_games__games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_popular_games__games_id_seq OWNER TO wongames; -- -- TOC entry 3439 (class 0 OID 0) -- Dependencies: 210 -- Name: components_page_popular_games__games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_popular_games__games_id_seq OWNED BY public.components_page_popular_games__games.id; -- -- TOC entry 213 (class 1259 OID 548916) -- Name: components_page_popular_games_components; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_popular_games_components ( id integer NOT NULL, field character varying(255) NOT NULL, "order" integer NOT NULL, component_type character varying(255) NOT NULL, component_id integer NOT NULL, components_page_popular_game_id integer NOT NULL ); ALTER TABLE public.components_page_popular_games_components OWNER TO wongames; -- -- TOC entry 212 (class 1259 OID 548914) -- Name: components_page_popular_games_components_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_popular_games_components_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_popular_games_components_id_seq OWNER TO wongames; -- -- TOC entry 3440 (class 0 OID 0) -- Dependencies: 212 -- Name: components_page_popular_games_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_popular_games_components_id_seq OWNED BY public.components_page_popular_games_components.id; -- -- TOC entry 208 (class 1259 OID 548898) -- Name: components_page_popular_games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_popular_games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_popular_games_id_seq OWNER TO wongames; -- -- TOC entry 3441 (class 0 OID 0) -- Dependencies: 208 -- Name: components_page_popular_games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_popular_games_id_seq OWNED BY public.components_page_popular_games.id; -- -- TOC entry 215 (class 1259 OID 548932) -- Name: components_page_ribbons; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_ribbons ( id integer NOT NULL, text character varying(255), color character varying(255), size character varying(255) ); ALTER TABLE public.components_page_ribbons OWNER TO wongames; -- -- TOC entry 214 (class 1259 OID 548930) -- Name: components_page_ribbons_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_ribbons_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_ribbons_id_seq OWNER TO wongames; -- -- TOC entry 3442 (class 0 OID 0) -- Dependencies: 214 -- Name: components_page_ribbons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_ribbons_id_seq OWNED BY public.components_page_ribbons.id; -- -- TOC entry 217 (class 1259 OID 548943) -- Name: components_page_sections; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_sections ( id integer NOT NULL, title character varying(255) ); ALTER TABLE public.components_page_sections OWNER TO wongames; -- -- TOC entry 219 (class 1259 OID 548951) -- Name: components_page_sections_components; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.components_page_sections_components ( id integer NOT NULL, field character varying(255) NOT NULL, "order" integer NOT NULL, component_type character varying(255) NOT NULL, component_id integer NOT NULL, components_page_section_id integer NOT NULL ); ALTER TABLE public.components_page_sections_components OWNER TO wongames; -- -- TOC entry 218 (class 1259 OID 548949) -- Name: components_page_sections_components_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_sections_components_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_sections_components_id_seq OWNER TO wongames; -- -- TOC entry 3443 (class 0 OID 0) -- Dependencies: 218 -- Name: components_page_sections_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_sections_components_id_seq OWNED BY public.components_page_sections_components.id; -- -- TOC entry 216 (class 1259 OID 548941) -- Name: components_page_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.components_page_sections_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.components_page_sections_id_seq OWNER TO wongames; -- -- TOC entry 3444 (class 0 OID 0) -- Dependencies: 216 -- Name: components_page_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.components_page_sections_id_seq OWNED BY public.components_page_sections.id; -- -- TOC entry 203 (class 1259 OID 548867) -- Name: core_store; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.core_store ( id integer NOT NULL, key character varying(255), value text, type character varying(255), environment character varying(255), tag character varying(255) ); ALTER TABLE public.core_store OWNER TO wongames; -- -- TOC entry 202 (class 1259 OID 548865) -- Name: core_store_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.core_store_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.core_store_id_seq OWNER TO wongames; -- -- TOC entry 3445 (class 0 OID 0) -- Dependencies: 202 -- Name: core_store_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.core_store_id_seq OWNED BY public.core_store.id; -- -- TOC entry 227 (class 1259 OID 549013) -- Name: developers; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.developers ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.developers OWNER TO wongames; -- -- TOC entry 233 (class 1259 OID 549055) -- Name: developers_games__games_developers; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.developers_games__games_developers ( id integer NOT NULL, game_id integer, developer_id integer ); ALTER TABLE public.developers_games__games_developers OWNER TO wongames; -- -- TOC entry 232 (class 1259 OID 549053) -- Name: developers_games__games_developers_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.developers_games__games_developers_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.developers_games__games_developers_id_seq OWNER TO wongames; -- -- TOC entry 3446 (class 0 OID 0) -- Dependencies: 232 -- Name: developers_games__games_developers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.developers_games__games_developers_id_seq OWNED BY public.developers_games__games_developers.id; -- -- TOC entry 226 (class 1259 OID 549011) -- Name: developers_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.developers_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.developers_id_seq OWNER TO wongames; -- -- TOC entry 3447 (class 0 OID 0) -- Dependencies: 226 -- Name: developers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.developers_id_seq OWNED BY public.developers.id; -- -- TOC entry 267 (class 1259 OID 549260) -- Name: email_templates; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.email_templates ( id integer NOT NULL, design jsonb, name character varying(255), subject character varying(255), "bodyHtml" text, "bodyText" text, enabled boolean, tags jsonb, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.email_templates OWNER TO wongames; -- -- TOC entry 266 (class 1259 OID 549258) -- Name: email_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.email_templates_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.email_templates_id_seq OWNER TO wongames; -- -- TOC entry 3448 (class 0 OID 0) -- Dependencies: 266 -- Name: email_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.email_templates_id_seq OWNED BY public.email_templates.id; -- -- TOC entry 229 (class 1259 OID 549030) -- Name: games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.games ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, short_description text NOT NULL, description text NOT NULL, price numeric(10,2) NOT NULL, release_date date, rating character varying(255), publisher integer, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.games OWNER TO wongames; -- -- TOC entry 228 (class 1259 OID 549028) -- Name: games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.games_id_seq OWNER TO wongames; -- -- TOC entry 3449 (class 0 OID 0) -- Dependencies: 228 -- Name: games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.games_id_seq OWNED BY public.games.id; -- -- TOC entry 235 (class 1259 OID 549063) -- Name: games_platforms__platforms_games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.games_platforms__platforms_games ( id integer NOT NULL, game_id integer, platform_id integer ); ALTER TABLE public.games_platforms__platforms_games OWNER TO wongames; -- -- TOC entry 234 (class 1259 OID 549061) -- Name: games_platforms__platforms_games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.games_platforms__platforms_games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.games_platforms__platforms_games_id_seq OWNER TO wongames; -- -- TOC entry 3450 (class 0 OID 0) -- Dependencies: 234 -- Name: games_platforms__platforms_games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.games_platforms__platforms_games_id_seq OWNED BY public.games_platforms__platforms_games.id; -- -- TOC entry 237 (class 1259 OID 549071) -- Name: homes; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.homes ( id integer NOT NULL, published_at timestamp with time zone, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.homes OWNER TO wongames; -- -- TOC entry 239 (class 1259 OID 549081) -- Name: homes_components; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.homes_components ( id integer NOT NULL, field character varying(255) NOT NULL, "order" integer NOT NULL, component_type character varying(255) NOT NULL, component_id integer NOT NULL, home_id integer NOT NULL ); ALTER TABLE public.homes_components OWNER TO wongames; -- -- TOC entry 238 (class 1259 OID 549079) -- Name: homes_components_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.homes_components_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.homes_components_id_seq OWNER TO wongames; -- -- TOC entry 3451 (class 0 OID 0) -- Dependencies: 238 -- Name: homes_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.homes_components_id_seq OWNED BY public.homes_components.id; -- -- TOC entry 236 (class 1259 OID 549069) -- Name: homes_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.homes_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.homes_id_seq OWNER TO wongames; -- -- TOC entry 3452 (class 0 OID 0) -- Dependencies: 236 -- Name: homes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.homes_id_seq OWNED BY public.homes.id; -- -- TOC entry 241 (class 1259 OID 549097) -- Name: orders; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.orders ( id integer NOT NULL, "user" integer, payment_intent_id character varying(255), card_brand character varying(255), card_last4 character varying(255), total_in_cents bigint, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.orders OWNER TO wongames; -- -- TOC entry 243 (class 1259 OID 549110) -- Name: orders__games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.orders__games ( id integer NOT NULL, order_id integer, game_id integer ); ALTER TABLE public.orders__games OWNER TO wongames; -- -- TOC entry 242 (class 1259 OID 549108) -- Name: orders__games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.orders__games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.orders__games_id_seq OWNER TO wongames; -- -- TOC entry 3453 (class 0 OID 0) -- Dependencies: 242 -- Name: orders__games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.orders__games_id_seq OWNED BY public.orders__games.id; -- -- TOC entry 240 (class 1259 OID 549095) -- Name: orders_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.orders_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.orders_id_seq OWNER TO wongames; -- -- TOC entry 3454 (class 0 OID 0) -- Dependencies: 240 -- Name: orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.orders_id_seq OWNED BY public.orders.id; -- -- TOC entry 245 (class 1259 OID 549118) -- Name: platforms; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.platforms ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.platforms OWNER TO wongames; -- -- TOC entry 244 (class 1259 OID 549116) -- Name: platforms_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.platforms_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.platforms_id_seq OWNER TO wongames; -- -- TOC entry 3455 (class 0 OID 0) -- Dependencies: 244 -- Name: platforms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.platforms_id_seq OWNED BY public.platforms.id; -- -- TOC entry 247 (class 1259 OID 549135) -- Name: publishers; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.publishers ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.publishers OWNER TO wongames; -- -- TOC entry 246 (class 1259 OID 549133) -- Name: publishers_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.publishers_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.publishers_id_seq OWNER TO wongames; -- -- TOC entry 3456 (class 0 OID 0) -- Dependencies: 246 -- Name: publishers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.publishers_id_seq OWNED BY public.publishers.id; -- -- TOC entry 249 (class 1259 OID 549152) -- Name: recommendeds; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.recommendeds ( id integer NOT NULL, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.recommendeds OWNER TO wongames; -- -- TOC entry 251 (class 1259 OID 549162) -- Name: recommendeds_components; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.recommendeds_components ( id integer NOT NULL, field character varying(255) NOT NULL, "order" integer NOT NULL, component_type character varying(255) NOT NULL, component_id integer NOT NULL, recommended_id integer NOT NULL ); ALTER TABLE public.recommendeds_components OWNER TO wongames; -- -- TOC entry 250 (class 1259 OID 549160) -- Name: recommendeds_components_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.recommendeds_components_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.recommendeds_components_id_seq OWNER TO wongames; -- -- TOC entry 3457 (class 0 OID 0) -- Dependencies: 250 -- Name: recommendeds_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.recommendeds_components_id_seq OWNED BY public.recommendeds_components.id; -- -- TOC entry 248 (class 1259 OID 549150) -- Name: recommendeds_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.recommendeds_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.recommendeds_id_seq OWNER TO wongames; -- -- TOC entry 3458 (class 0 OID 0) -- Dependencies: 248 -- Name: recommendeds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.recommendeds_id_seq OWNED BY public.recommendeds.id; -- -- TOC entry 263 (class 1259 OID 549239) -- Name: strapi_administrator; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.strapi_administrator ( id integer NOT NULL, firstname character varying(255), lastname character varying(255), username character varying(255), email character varying(255) NOT NULL, password character varying(255), "resetPasswordToken" character varying(255), "registrationToken" character varying(255), "isActive" boolean, blocked boolean, "preferedLanguage" character varying(255) ); ALTER TABLE public.strapi_administrator OWNER TO wongames; -- -- TOC entry 262 (class 1259 OID 549237) -- Name: strapi_administrator_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.strapi_administrator_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.strapi_administrator_id_seq OWNER TO wongames; -- -- TOC entry 3459 (class 0 OID 0) -- Dependencies: 262 -- Name: strapi_administrator_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.strapi_administrator_id_seq OWNED BY public.strapi_administrator.id; -- -- TOC entry 259 (class 1259 OID 549209) -- Name: strapi_permission; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.strapi_permission ( id integer NOT NULL, action character varying(255) NOT NULL, subject character varying(255), properties jsonb, conditions jsonb, role integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.strapi_permission OWNER TO wongames; -- -- TOC entry 258 (class 1259 OID 549207) -- Name: strapi_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.strapi_permission_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.strapi_permission_id_seq OWNER TO wongames; -- -- TOC entry 3460 (class 0 OID 0) -- Dependencies: 258 -- Name: strapi_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.strapi_permission_id_seq OWNED BY public.strapi_permission.id; -- -- TOC entry 261 (class 1259 OID 549222) -- Name: strapi_role; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.strapi_role ( id integer NOT NULL, name character varying(255) NOT NULL, code character varying(255) NOT NULL, description character varying(255), created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.strapi_role OWNER TO wongames; -- -- TOC entry 260 (class 1259 OID 549220) -- Name: strapi_role_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.strapi_role_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.strapi_role_id_seq OWNER TO wongames; -- -- TOC entry 3461 (class 0 OID 0) -- Dependencies: 260 -- Name: strapi_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.strapi_role_id_seq OWNED BY public.strapi_role.id; -- -- TOC entry 265 (class 1259 OID 549252) -- Name: strapi_users_roles; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.strapi_users_roles ( id integer NOT NULL, user_id integer, role_id integer ); ALTER TABLE public.strapi_users_roles OWNER TO wongames; -- -- TOC entry 264 (class 1259 OID 549250) -- Name: strapi_users_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.strapi_users_roles_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.strapi_users_roles_id_seq OWNER TO wongames; -- -- TOC entry 3462 (class 0 OID 0) -- Dependencies: 264 -- Name: strapi_users_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.strapi_users_roles_id_seq OWNED BY public.strapi_users_roles.id; -- -- TOC entry 257 (class 1259 OID 549198) -- Name: strapi_webhooks; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.strapi_webhooks ( id integer NOT NULL, name character varying(255), url text, headers jsonb, events jsonb, enabled boolean ); ALTER TABLE public.strapi_webhooks OWNER TO wongames; -- -- TOC entry 256 (class 1259 OID 549196) -- Name: strapi_webhooks_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.strapi_webhooks_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.strapi_webhooks_id_seq OWNER TO wongames; -- -- TOC entry 3463 (class 0 OID 0) -- Dependencies: 256 -- Name: strapi_webhooks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.strapi_webhooks_id_seq OWNED BY public.strapi_webhooks.id; -- -- TOC entry 269 (class 1259 OID 549273) -- Name: upload_file; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.upload_file ( id integer NOT NULL, name character varying(255) NOT NULL, "alternativeText" character varying(255), caption character varying(255), width integer, height integer, formats jsonb, hash character varying(255) NOT NULL, ext character varying(255), mime character varying(255) NOT NULL, size numeric(10,2) NOT NULL, url character varying(255) NOT NULL, "previewUrl" character varying(255), provider character varying(255) NOT NULL, provider_metadata jsonb, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.upload_file OWNER TO wongames; -- -- TOC entry 268 (class 1259 OID 549271) -- Name: upload_file_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.upload_file_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.upload_file_id_seq OWNER TO wongames; -- -- TOC entry 3464 (class 0 OID 0) -- Dependencies: 268 -- Name: upload_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.upload_file_id_seq OWNED BY public.upload_file.id; -- -- TOC entry 271 (class 1259 OID 549286) -- Name: upload_file_morph; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.upload_file_morph ( id integer NOT NULL, upload_file_id integer, related_id integer, related_type text, field text, "order" integer ); ALTER TABLE public.upload_file_morph OWNER TO wongames; -- -- TOC entry 270 (class 1259 OID 549284) -- Name: upload_file_morph_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.upload_file_morph_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.upload_file_morph_id_seq OWNER TO wongames; -- -- TOC entry 3465 (class 0 OID 0) -- Dependencies: 270 -- Name: upload_file_morph_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.upload_file_morph_id_seq OWNED BY public.upload_file_morph.id; -- -- TOC entry 273 (class 1259 OID 549297) -- Name: users-permissions_permission; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public."users-permissions_permission" ( id integer NOT NULL, type character varying(255) NOT NULL, controller character varying(255) NOT NULL, action character varying(255) NOT NULL, enabled boolean NOT NULL, policy character varying(255), role integer, created_by integer, updated_by integer ); ALTER TABLE public."users-permissions_permission" OWNER TO wongames; -- -- TOC entry 272 (class 1259 OID 549295) -- Name: users-permissions_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public."users-permissions_permission_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."users-permissions_permission_id_seq" OWNER TO wongames; -- -- TOC entry 3466 (class 0 OID 0) -- Dependencies: 272 -- Name: users-permissions_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public."users-permissions_permission_id_seq" OWNED BY public."users-permissions_permission".id; -- -- TOC entry 275 (class 1259 OID 549308) -- Name: users-permissions_role; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public."users-permissions_role" ( id integer NOT NULL, name character varying(255) NOT NULL, description character varying(255), type character varying(255), created_by integer, updated_by integer ); ALTER TABLE public."users-permissions_role" OWNER TO wongames; -- -- TOC entry 274 (class 1259 OID 549306) -- Name: users-permissions_role_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public."users-permissions_role_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."users-permissions_role_id_seq" OWNER TO wongames; -- -- TOC entry 3467 (class 0 OID 0) -- Dependencies: 274 -- Name: users-permissions_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public."users-permissions_role_id_seq" OWNED BY public."users-permissions_role".id; -- -- TOC entry 277 (class 1259 OID 549321) -- Name: users-permissions_user; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public."users-permissions_user" ( id integer NOT NULL, username character varying(255) NOT NULL, email character varying(255) NOT NULL, provider character varying(255), password character varying(255), "resetPasswordToken" character varying(255), "confirmationToken" character varying(255), confirmed boolean, blocked boolean, role integer, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public."users-permissions_user" OWNER TO wongames; -- -- TOC entry 276 (class 1259 OID 549319) -- Name: users-permissions_user_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public."users-permissions_user_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public."users-permissions_user_id_seq" OWNER TO wongames; -- -- TOC entry 3468 (class 0 OID 0) -- Dependencies: 276 -- Name: users-permissions_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public."users-permissions_user_id_seq" OWNED BY public."users-permissions_user".id; -- -- TOC entry 253 (class 1259 OID 549178) -- Name: wishlists; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.wishlists ( id integer NOT NULL, "user" integer, created_by integer, updated_by integer, created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.wishlists OWNER TO wongames; -- -- TOC entry 255 (class 1259 OID 549190) -- Name: wishlists__games; Type: TABLE; Schema: public; Owner: wongames -- CREATE TABLE public.wishlists__games ( id integer NOT NULL, wishlist_id integer, game_id integer ); ALTER TABLE public.wishlists__games OWNER TO wongames; -- -- TOC entry 254 (class 1259 OID 549188) -- Name: wishlists__games_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.wishlists__games_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.wishlists__games_id_seq OWNER TO wongames; -- -- TOC entry 3469 (class 0 OID 0) -- Dependencies: 254 -- Name: wishlists__games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.wishlists__games_id_seq OWNED BY public.wishlists__games.id; -- -- TOC entry 252 (class 1259 OID 549176) -- Name: wishlists_id_seq; Type: SEQUENCE; Schema: public; Owner: wongames -- CREATE SEQUENCE public.wishlists_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.wishlists_id_seq OWNER TO wongames; -- -- TOC entry 3470 (class 0 OID 0) -- Dependencies: 252 -- Name: wishlists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: wongames -- ALTER SEQUENCE public.wishlists_id_seq OWNED BY public.wishlists.id; -- -- TOC entry 3053 (class 2604 OID 548970) -- Name: banners id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.banners ALTER COLUMN id SET DEFAULT nextval('public.banners_id_seq'::regclass); -- -- TOC entry 3056 (class 2604 OID 548983) -- Name: banners_components id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.banners_components ALTER COLUMN id SET DEFAULT nextval('public.banners_components_id_seq'::regclass); -- -- TOC entry 3057 (class 2604 OID 548999) -- Name: categories id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories ALTER COLUMN id SET DEFAULT nextval('public.categories_id_seq'::regclass); -- -- TOC entry 3066 (class 2604 OID 549050) -- Name: categories_games__games_categories id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories_games__games_categories ALTER COLUMN id SET DEFAULT nextval('public.categories_games__games_categories_id_seq'::regclass); -- -- TOC entry 3045 (class 2604 OID 548881) -- Name: components_page_buttons id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_buttons ALTER COLUMN id SET DEFAULT nextval('public.components_page_buttons_id_seq'::regclass); -- -- TOC entry 3046 (class 2604 OID 548892) -- Name: components_page_highlights id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_highlights ALTER COLUMN id SET DEFAULT nextval('public.components_page_highlights_id_seq'::regclass); -- -- TOC entry 3047 (class 2604 OID 548903) -- Name: components_page_popular_games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games ALTER COLUMN id SET DEFAULT nextval('public.components_page_popular_games_id_seq'::regclass); -- -- TOC entry 3048 (class 2604 OID 548911) -- Name: components_page_popular_games__games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games__games ALTER COLUMN id SET DEFAULT nextval('public.components_page_popular_games__games_id_seq'::regclass); -- -- TOC entry 3049 (class 2604 OID 548919) -- Name: components_page_popular_games_components id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games_components ALTER COLUMN id SET DEFAULT nextval('public.components_page_popular_games_components_id_seq'::regclass); -- -- TOC entry 3050 (class 2604 OID 548935) -- Name: components_page_ribbons id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_ribbons ALTER COLUMN id SET DEFAULT nextval('public.components_page_ribbons_id_seq'::regclass); -- -- TOC entry 3051 (class 2604 OID 548946) -- Name: components_page_sections id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_sections ALTER COLUMN id SET DEFAULT nextval('public.components_page_sections_id_seq'::regclass); -- -- TOC entry 3052 (class 2604 OID 548954) -- Name: components_page_sections_components id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_sections_components ALTER COLUMN id SET DEFAULT nextval('public.components_page_sections_components_id_seq'::regclass); -- -- TOC entry 3044 (class 2604 OID 548870) -- Name: core_store id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.core_store ALTER COLUMN id SET DEFAULT nextval('public.core_store_id_seq'::regclass); -- -- TOC entry 3060 (class 2604 OID 549016) -- Name: developers id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers ALTER COLUMN id SET DEFAULT nextval('public.developers_id_seq'::regclass); -- -- TOC entry 3067 (class 2604 OID 549058) -- Name: developers_games__games_developers id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers_games__games_developers ALTER COLUMN id SET DEFAULT nextval('public.developers_games__games_developers_id_seq'::regclass); -- -- TOC entry 3100 (class 2604 OID 549263) -- Name: email_templates id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.email_templates ALTER COLUMN id SET DEFAULT nextval('public.email_templates_id_seq'::regclass); -- -- TOC entry 3063 (class 2604 OID 549033) -- Name: games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games ALTER COLUMN id SET DEFAULT nextval('public.games_id_seq'::regclass); -- -- TOC entry 3068 (class 2604 OID 549066) -- Name: games_platforms__platforms_games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games_platforms__platforms_games ALTER COLUMN id SET DEFAULT nextval('public.games_platforms__platforms_games_id_seq'::regclass); -- -- TOC entry 3069 (class 2604 OID 549074) -- Name: homes id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.homes ALTER COLUMN id SET DEFAULT nextval('public.homes_id_seq'::regclass); -- -- TOC entry 3072 (class 2604 OID 549084) -- Name: homes_components id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.homes_components ALTER COLUMN id SET DEFAULT nextval('public.homes_components_id_seq'::regclass); -- -- TOC entry 3073 (class 2604 OID 549100) -- Name: orders id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.orders ALTER COLUMN id SET DEFAULT nextval('public.orders_id_seq'::regclass); -- -- TOC entry 3076 (class 2604 OID 549113) -- Name: orders__games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.orders__games ALTER COLUMN id SET DEFAULT nextval('public.orders__games_id_seq'::regclass); -- -- TOC entry 3077 (class 2604 OID 549121) -- Name: platforms id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.platforms ALTER COLUMN id SET DEFAULT nextval('public.platforms_id_seq'::regclass); -- -- TOC entry 3080 (class 2604 OID 549138) -- Name: publishers id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.publishers ALTER COLUMN id SET DEFAULT nextval('public.publishers_id_seq'::regclass); -- -- TOC entry 3083 (class 2604 OID 549155) -- Name: recommendeds id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.recommendeds ALTER COLUMN id SET DEFAULT nextval('public.recommendeds_id_seq'::regclass); -- -- TOC entry 3086 (class 2604 OID 549165) -- Name: recommendeds_components id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.recommendeds_components ALTER COLUMN id SET DEFAULT nextval('public.recommendeds_components_id_seq'::regclass); -- -- TOC entry 3098 (class 2604 OID 549242) -- Name: strapi_administrator id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_administrator ALTER COLUMN id SET DEFAULT nextval('public.strapi_administrator_id_seq'::regclass); -- -- TOC entry 3092 (class 2604 OID 549212) -- Name: strapi_permission id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_permission ALTER COLUMN id SET DEFAULT nextval('public.strapi_permission_id_seq'::regclass); -- -- TOC entry 3095 (class 2604 OID 549225) -- Name: strapi_role id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_role ALTER COLUMN id SET DEFAULT nextval('public.strapi_role_id_seq'::regclass); -- -- TOC entry 3099 (class 2604 OID 549255) -- Name: strapi_users_roles id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_users_roles ALTER COLUMN id SET DEFAULT nextval('public.strapi_users_roles_id_seq'::regclass); -- -- TOC entry 3091 (class 2604 OID 549201) -- Name: strapi_webhooks id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_webhooks ALTER COLUMN id SET DEFAULT nextval('public.strapi_webhooks_id_seq'::regclass); -- -- TOC entry 3103 (class 2604 OID 549276) -- Name: upload_file id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.upload_file ALTER COLUMN id SET DEFAULT nextval('public.upload_file_id_seq'::regclass); -- -- TOC entry 3106 (class 2604 OID 549289) -- Name: upload_file_morph id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.upload_file_morph ALTER COLUMN id SET DEFAULT nextval('public.upload_file_morph_id_seq'::regclass); -- -- TOC entry 3107 (class 2604 OID 549300) -- Name: users-permissions_permission id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_permission" ALTER COLUMN id SET DEFAULT nextval('public."users-permissions_permission_id_seq"'::regclass); -- -- TOC entry 3108 (class 2604 OID 549311) -- Name: users-permissions_role id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_role" ALTER COLUMN id SET DEFAULT nextval('public."users-permissions_role_id_seq"'::regclass); -- -- TOC entry 3109 (class 2604 OID 549324) -- Name: users-permissions_user id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_user" ALTER COLUMN id SET DEFAULT nextval('public."users-permissions_user_id_seq"'::regclass); -- -- TOC entry 3087 (class 2604 OID 549181) -- Name: wishlists id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.wishlists ALTER COLUMN id SET DEFAULT nextval('public.wishlists_id_seq'::regclass); -- -- TOC entry 3090 (class 2604 OID 549193) -- Name: wishlists__games id; Type: DEFAULT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.wishlists__games ALTER COLUMN id SET DEFAULT nextval('public.wishlists__games_id_seq'::regclass); -- -- TOC entry 3370 (class 0 OID 548967) -- Dependencies: 221 -- Data for Name: banners; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.banners (id, title, subtitle, published_at, created_by, updated_by, created_at, updated_at) FROM stdin; 1 Cyberpunk 2077 Enter the massive open world of Night City, a place that sets new standards in terms of visuals, complexity and depth. 2021-05-20 12:08:27.331-03 1 1 2021-05-20 12:08:26.13-03 2021-05-20 12:08:27.346-03 2 Horizon Zero Dawn Experience Aloy’s entire legendary quest to unravel the mysteries of a world ruled by deadly Machines. 2021-05-20 12:08:56.854-03 1 1 2021-05-20 12:08:55.682-03 2021-05-20 12:08:56.868-03 3 Huge promotion! Enjoy our best games with an amazing promo! 2021-05-20 12:09:32.343-03 1 1 2021-05-20 12:09:30.756-03 2021-05-20 13:20:27.908-03 \. -- -- TOC entry 3372 (class 0 OID 548980) -- Dependencies: 223 -- Data for Name: banners_components; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.banners_components (id, field, "order", component_type, component_id, banner_id) FROM stdin; 1 button 1 components_page_buttons 1 1 2 button 1 components_page_buttons 2 2 3 button 1 components_page_buttons 3 3 \. -- -- TOC entry 3374 (class 0 OID 548996) -- Dependencies: 225 -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.categories (id, name, slug, created_by, updated_by, created_at, updated_at) FROM stdin; 1 Role-playing role-playing \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 2 Fantasy fantasy \N \N 2021-05-20 12:02:45.572-03 2021-05-20 12:02:45.572-03 3 Adventure adventure \N \N 2021-05-20 12:02:45.572-03 2021-05-20 12:02:45.572-03 4 Action action \N \N 2021-05-20 12:02:45.598-03 2021-05-20 12:02:45.598-03 5 Sci-fi sci-fi \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 6 Strategy strategy \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 7 Open World open-world \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 8 Horror horror \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 9 Survival survival \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 10 Managerial managerial \N \N 2021-05-20 12:02:45.6-03 2021-05-20 12:02:45.6-03 11 Turn-based turn-based \N \N 2021-05-20 12:02:45.603-03 2021-05-20 12:02:45.603-03 12 Simulation simulation \N \N 2021-05-20 12:02:45.603-03 2021-05-20 12:02:45.603-03 13 Shooter shooter \N \N 2021-05-20 12:02:45.603-03 2021-05-20 12:02:45.603-03 14 Building building \N \N 2021-05-20 12:02:45.631-03 2021-05-20 12:02:45.631-03 15 FPP fpp \N \N 2021-05-20 12:02:45.632-03 2021-05-20 12:02:45.632-03 16 Platformer platformer \N \N 2021-05-20 12:02:45.632-03 2021-05-20 12:02:45.632-03 17 Tactical tactical \N \N 2021-05-20 12:02:45.634-03 2021-05-20 12:02:45.634-03 18 Real-time real-time \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 19 Stealth stealth \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 20 \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 21 Visual Novel visual-novel \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 22 Narrative narrative \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 23 Point-and-click point-and-click \N \N 2021-05-20 12:02:45.636-03 2021-05-20 12:02:45.636-03 24 Mystery mystery \N \N 2021-05-20 12:02:45.667-03 2021-05-20 12:02:45.667-03 25 Puzzle puzzle \N \N 2021-05-20 12:02:45.669-03 2021-05-20 12:02:45.669-03 26 Combat combat \N \N 2021-05-20 12:02:45.669-03 2021-05-20 12:02:45.669-03 27 Historical historical \N \N 2021-05-20 12:04:16.024-03 2021-05-20 12:04:16.024-03 28 Sports sports \N \N 2021-05-20 12:04:16.034-03 2021-05-20 12:04:16.034-03 29 Fighting fighting \N \N 2021-05-20 12:04:16.034-03 2021-05-20 12:04:16.034-03 30 JRPG jrpg \N \N 2021-05-20 12:04:16.034-03 2021-05-20 12:04:16.034-03 31 Roguelike roguelike \N \N 2021-05-20 12:04:16.038-03 2021-05-20 12:04:16.038-03 32 Sandbox sandbox \N \N 2021-05-20 12:04:16.066-03 2021-05-20 12:04:16.066-03 33 Naval naval \N \N 2021-05-20 12:06:07.869-03 2021-05-20 12:06:07.869-03 34 Detective-mystery detective-mystery \N \N 2021-05-20 12:06:07.88-03 2021-05-20 12:06:07.88-03 35 TPP tpp \N \N 2021-05-20 12:06:07.88-03 2021-05-20 12:06:07.88-03 36 Metroidvania metroidvania \N \N 2021-05-20 12:06:07.881-03 2021-05-20 12:06:07.881-03 37 Comedy comedy \N \N 2021-05-20 12:06:07.897-03 2021-05-20 12:06:07.897-03 38 Arcade arcade \N \N 2021-05-20 12:06:07.906-03 2021-05-20 12:06:07.906-03 \. -- -- TOC entry 3380 (class 0 OID 549047) -- Dependencies: 231 -- Data for Name: categories_games__games_categories; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.categories_games__games_categories (id, game_id, category_id) FROM stdin; 1 1 1 2 2 1 3 1 4 4 2 6 5 3 1 6 4 1 7 1 5 8 2 2 9 3 11 10 4 3 11 3 2 12 4 2 13 5 1 14 6 4 15 7 1 16 8 3 17 5 15 18 6 3 19 7 3 20 8 15 21 9 13 22 10 3 23 11 4 24 12 12 25 13 3 26 14 6 27 5 7 28 6 7 29 7 2 30 8 8 31 9 4 32 10 23 33 11 12 34 12 6 35 13 23 36 14 11 37 9 16 38 10 24 39 11 17 40 12 5 41 13 5 42 14 2 43 15 6 44 16 1 45 17 3 46 15 14 47 16 3 48 17 1 49 19 1 50 20 6 51 21 4 52 22 1 53 18 1 54 15 10 55 16 2 56 17 20 57 19 4 58 20 14 59 21 3 60 22 4 61 18 6 62 19 8 63 20 10 64 21 8 65 22 2 66 18 7 67 23 3 68 23 11 69 24 1 70 23 2 71 24 4 72 24 2 73 25 1 74 25 4 75 26 4 76 27 4 77 28 4 78 29 1 79 30 1 80 25 2 81 26 3 82 27 9 83 28 1 84 29 11 85 30 21 86 31 13 87 26 19 88 28 2 89 29 2 90 30 22 91 31 4 92 32 12 93 33 1 94 31 5 95 32 21 96 33 3 97 32 25 98 33 2 99 34 13 100 34 4 101 34 19 102 36 13 103 37 1 104 35 4 105 36 4 106 37 3 107 35 1 108 38 1 109 39 12 110 40 1 111 36 8 112 37 2 113 35 8 114 38 11 115 39 3 116 40 4 117 41 4 118 42 4 119 38 2 120 39 16 121 40 8 122 41 1 123 42 26 124 43 6 125 41 2 126 42 16 127 43 9 128 43 10 129 44 6 130 44 18 131 44 2 132 45 4 133 45 1 134 46 1 135 47 6 136 45 16 137 46 4 138 47 11 139 48 1 140 46 7 141 47 25 142 48 3 143 48 2 144 49 12 145 49 21 146 49 5 147 50 6 148 50 18 149 51 4 150 50 27 151 51 26 152 51 17 153 52 3 154 52 11 155 53 1 156 55 12 157 54 1 158 56 1 159 57 6 160 58 4 161 59 3 162 60 1 163 61 12 164 52 30 165 53 4 166 55 14 167 54 3 168 56 3 169 57 18 170 58 1 171 59 1 172 60 4 173 61 3 174 53 2 175 55 10 176 54 2 177 56 2 178 57 32 179 58 5 180 59 27 181 60 30 182 61 16 183 62 13 184 62 15 185 63 1 186 64 4 193 64 1 200 64 5 215 74 6 218 74 18 222 74 17 247 83 4 251 83 18 259 83 17 275 93 6 281 93 18 286 93 19 187 65 3 194 65 23 201 65 25 214 73 4 217 73 3 221 73 20 245 84 1 249 84 11 257 84 2 188 66 28 195 66 18 202 66 29 219 75 3 223 75 1 229 75 16 246 85 1 250 85 21 258 85 22 189 67 4 196 67 3 203 67 31 225 77 4 231 77 3 237 77 2 253 87 12 261 87 14 266 87 10 279 95 1 285 95 3 290 95 2 190 68 3 197 68 23 204 68 5 226 78 6 232 78 18 238 78 27 254 88 3 262 88 21 267 88 24 191 62 5 213 72 6 216 72 11 220 72 5 243 82 3 244 82 1 248 82 27 273 92 1 274 92 3 280 92 2 192 63 3 199 63 2 224 76 6 230 76 11 236 76 5 252 86 1 260 86 11 265 86 30 276 94 12 282 94 14 287 94 10 198 69 6 205 69 11 208 69 5 228 80 3 234 80 1 240 80 27 255 89 6 263 89 18 268 89 27 278 97 4 284 97 3 289 97 5 206 70 13 209 70 4 211 70 5 235 81 1 241 81 6 242 81 2 270 91 4 271 91 26 272 91 16 207 71 3 210 71 25 212 71 5 227 79 3 233 79 1 239 79 27 256 90 3 264 90 1 269 90 27 277 96 1 283 96 3 288 96 2 291 98 4 292 99 13 293 98 3 294 99 15 295 100 3 296 101 3 297 102 3 298 103 1 299 104 4 300 98 37 301 99 5 302 100 23 303 101 35 304 102 15 305 103 4 306 104 3 307 105 6 308 100 29 309 101 2 310 102 25 311 103 33 312 105 11 313 105 2 314 106 6 315 106 14 316 107 3 317 108 3 318 110 13 319 109 6 320 111 12 321 112 3 322 113 6 323 114 6 324 115 4 325 106 10 326 107 23 327 108 4 328 110 4 329 109 14 330 111 1 331 112 23 332 113 11 333 114 14 334 115 26 335 107 34 336 108 16 337 110 19 338 109 5 339 112 8 340 113 5 341 114 2 342 115 2 343 118 4 344 119 12 345 120 3 346 121 4 347 122 3 348 123 12 349 124 6 350 116 4 351 117 4 352 118 3 353 119 6 354 120 1 355 121 3 356 122 25 357 123 6 358 124 18 359 116 3 360 117 38 361 125 1 362 118 16 363 119 17 364 120 2 365 121 2 366 122 16 367 123 5 368 124 2 369 116 20 370 117 5 371 125 11 372 125 31 373 127 1 374 128 3 375 129 3 376 130 4 377 131 3 378 132 13 379 133 4 380 126 3 381 127 3 382 128 11 383 129 1 384 130 1 385 131 23 386 132 4 387 133 1 388 126 15 389 134 3 390 135 3 391 127 30 392 128 30 393 129 20 394 130 2 395 131 24 396 132 20 397 133 8 398 126 8 399 134 35 400 135 23 401 134 36 402 135 20 403 136 3 404 137 4 405 138 1 406 139 6 407 136 35 408 137 36 409 138 6 410 139 11 411 141 3 412 142 4 413 140 4 414 136 24 415 137 16 416 138 2 417 139 17 418 141 21 419 142 1 420 140 3 421 143 4 422 144 4 423 141 24 424 142 16 425 140 16 426 143 3 427 144 9 428 143 16 429 144 8 \. -- -- TOC entry 3354 (class 0 OID 548878) -- Dependencies: 205 -- Data for Name: components_page_buttons; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_buttons (id, label, link) FROM stdin; 1 Buy now https://wongames.willianjusten.com.br/game/cyberpunk-2077 2 Buy now https://wongames.willianjusten.com.br/game/horizon-zero-dawn-complete-edition 3 Browse games https://wongames.willianjusten.com.br/games/ \. -- -- TOC entry 3356 (class 0 OID 548889) -- Dependencies: 207 -- Data for Name: components_page_highlights; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_highlights (id, title, subtitle, "buttonLabel", "buttonLink", alignment) FROM stdin; 1 Biomutant Preorder now to get the Special Mercenary Class DLC and the Official Soundtrack. Pre order https://wongames.willianjusten.com.br/game/biomutant left 2 Seven: The Days Long Gone Free roam across the vibrant prison island of Peh. Download now https://wongames.willianjusten.com.br/game/seven-the-days-long-gone-demo/ left 3 Disco Elysium - The Final Cut Disco Elysium is the definitive edition of the groundbreaking role playing game. Buy now https://wongames.willianjusten.com.br/game/disco-elysium right 4 Red Dead is back! Come see John’s new adventures Buy now https://wongames.willianjusten.com.br/games right \. -- -- TOC entry 3358 (class 0 OID 548900) -- Dependencies: 209 -- Data for Name: components_page_popular_games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_popular_games (id, title) FROM stdin; 1 Most Popular Games 2 You may like these games \. -- -- TOC entry 3360 (class 0 OID 548908) -- Dependencies: 211 -- Data for Name: components_page_popular_games__games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_popular_games__games (id, components_page_popular_game_id, game_id) FROM stdin; 1 1 8 2 1 5 3 1 45 4 1 4 5 1 7 6 1 42 7 2 3 8 2 1 9 2 26 10 2 9 11 2 10 12 2 43 \. -- -- TOC entry 3362 (class 0 OID 548916) -- Dependencies: 213 -- Data for Name: components_page_popular_games_components; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_popular_games_components (id, field, "order", component_type, component_id, components_page_popular_game_id) FROM stdin; 1 highlight 1 components_page_highlights 3 1 2 highlight 1 components_page_highlights 4 2 \. -- -- TOC entry 3364 (class 0 OID 548932) -- Dependencies: 215 -- Data for Name: components_page_ribbons; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_ribbons (id, text, color, size) FROM stdin; \. -- -- TOC entry 3366 (class 0 OID 548943) -- Dependencies: 217 -- Data for Name: components_page_sections; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_sections (id, title) FROM stdin; 1 New Games 2 Upcoming Games 3 Free Games \. -- -- TOC entry 3368 (class 0 OID 548951) -- Dependencies: 219 -- Data for Name: components_page_sections_components; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.components_page_sections_components (id, field, "order", component_type, component_id, components_page_section_id) FROM stdin; 1 highlight 1 components_page_highlights 1 2 2 highlight 1 components_page_highlights 2 3 \. -- -- TOC entry 3352 (class 0 OID 548867) -- Dependencies: 203 -- Data for Name: core_store; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.core_store (id, key, value, type, environment, tag) FROM stdin; 11 model_def_application::home.home {"uid":"application::home.home","collectionName":"homes","kind":"singleType","info":{"name":"home"},"options":{"increments":true,"timestamps":["created_at","updated_at"],"draftAndPublish":true},"attributes":{"newGames":{"type":"component","repeatable":false,"component":"page.section"},"upcomingGames":{"type":"component","repeatable":false,"component":"page.section"},"freeGames":{"type":"component","repeatable":false,"component":"page.section"},"popularGames":{"type":"component","repeatable":false,"component":"page.popular-games"},"published_at":{"type":"datetime","configurable":false,"writable":true,"visible":false},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 2 model_def_page.button {"uid":"page.button","collectionName":"components_page_buttons","info":{"name":"button","icon":"link"},"options":{"timestamps":false},"attributes":{"label":{"type":"string","required":true,"default":"Buy now"},"link":{"type":"string","required":true}}} object \N \N 4 model_def_page.popular-games {"uid":"page.popular-games","collectionName":"components_page_popular_games","info":{"name":"popularGames","icon":"star-of-life"},"options":{"timestamps":false},"attributes":{"title":{"type":"string","required":true},"highlight":{"type":"component","repeatable":false,"component":"page.highlight"},"games":{"collection":"game","attribute":"game","column":"id","isVirtual":true}}} object \N \N 8 model_def_application::category.category {"uid":"application::category.category","collectionName":"categories","kind":"collectionType","info":{"name":"category"},"options":{"increments":true,"timestamps":["created_at","updated_at"]},"attributes":{"name":{"type":"string","required":true,"unique":true},"slug":{"type":"uid","targetField":"name","required":true},"games":{"via":"categories","collection":"game","attribute":"game","column":"id","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 9 model_def_application::developer.developer {"uid":"application::developer.developer","collectionName":"developers","kind":"collectionType","info":{"name":"developer"},"options":{"increments":true,"timestamps":["created_at","updated_at"]},"attributes":{"name":{"type":"string","required":true,"unique":true},"slug":{"type":"uid","targetField":"name","required":true},"games":{"via":"developers","collection":"game","attribute":"game","column":"id","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 10 model_def_application::game.game {"uid":"application::game.game","collectionName":"games","kind":"collectionType","info":{"name":"game"},"options":{"increments":true,"timestamps":["created_at","updated_at"]},"attributes":{"name":{"type":"string","required":true,"unique":true},"slug":{"type":"uid","targetField":"name","required":true},"short_description":{"type":"text","required":true,"maxLength":160},"description":{"type":"richtext","required":true},"price":{"type":"decimal","required":true,"default":0},"release_date":{"type":"date"},"rating":{"type":"enumeration","enum":["BR0","BR10","BR12","BR14","BR16","BR18"]},"cover":{"model":"file","via":"related","allowedTypes":["images"],"plugin":"upload","required":false},"gallery":{"collection":"file","via":"related","allowedTypes":["images"],"plugin":"upload","required":false},"categories":{"collection":"category","via":"games","dominant":true,"attribute":"category","column":"id","isVirtual":true},"developers":{"collection":"developer","via":"games","dominant":true,"attribute":"developer","column":"id","isVirtual":true},"platforms":{"collection":"platform","via":"games","dominant":true,"attribute":"platform","column":"id","isVirtual":true},"publisher":{"model":"publisher","via":"games"},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 1 model_def_strapi::core-store {"uid":"strapi::core-store","collectionName":"core_store","info":{"name":"core_store","description":""},"options":{"timestamps":false},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"key":{"type":"string"},"value":{"type":"text"},"type":{"type":"string"},"environment":{"type":"string"},"tag":{"type":"string"}}} object \N \N 5 model_def_page.ribbon {"uid":"page.ribbon","collectionName":"components_page_ribbons","info":{"name":"ribbon","icon":"ribbon"},"options":{"timestamps":false},"attributes":{"text":{"type":"string","maxLength":30},"color":{"type":"enumeration","enum":["primary","secondary"],"default":"primary"},"size":{"type":"enumeration","enum":["small","normal"],"default":"normal"}}} object \N \N 6 model_def_page.section {"uid":"page.section","collectionName":"components_page_sections","info":{"name":"section","icon":"align-justify"},"options":{"timestamps":false},"attributes":{"title":{"type":"string"},"highlight":{"type":"component","repeatable":false,"component":"page.highlight"}}} object \N \N 13 model_def_application::platform.platform {"uid":"application::platform.platform","collectionName":"platforms","kind":"collectionType","info":{"name":"platform"},"options":{"increments":true,"timestamps":["created_at","updated_at"]},"attributes":{"name":{"type":"string","required":true,"unique":true},"slug":{"type":"uid","targetField":"name","required":true},"games":{"via":"platforms","collection":"game","attribute":"game","column":"id","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 14 model_def_application::publisher.publisher {"uid":"application::publisher.publisher","collectionName":"publishers","kind":"collectionType","info":{"name":"publisher"},"options":{"increments":true,"timestamps":["created_at","updated_at"]},"attributes":{"name":{"type":"string","required":true,"unique":true},"slug":{"type":"uid","targetField":"name","required":true},"games":{"via":"publisher","collection":"game","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 16 model_def_application::wishlist.wishlist {"uid":"application::wishlist.wishlist","collectionName":"wishlists","kind":"collectionType","info":{"name":"Wishlist","description":""},"options":{"increments":true,"timestamps":["created_at","updated_at"],"draftAndPublish":false},"attributes":{"user":{"unique":true,"plugin":"users-permissions","model":"user"},"games":{"collection":"game","attribute":"game","column":"id","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 17 model_def_strapi::webhooks {"uid":"strapi::webhooks","collectionName":"strapi_webhooks","info":{"name":"Strapi webhooks","description":""},"options":{"timestamps":false},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"name":{"type":"string"},"url":{"type":"text"},"headers":{"type":"json"},"events":{"type":"json"},"enabled":{"type":"boolean"}}} object \N \N 19 model_def_strapi::role {"uid":"strapi::role","collectionName":"strapi_role","kind":"collectionType","info":{"name":"Role","description":""},"options":{"timestamps":["created_at","updated_at"]},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"name":{"type":"string","minLength":1,"unique":true,"configurable":false,"required":true},"code":{"type":"string","minLength":1,"unique":true,"configurable":false,"required":true},"description":{"type":"string","configurable":false},"users":{"configurable":false,"collection":"user","via":"roles","plugin":"admin","attribute":"user","column":"id","isVirtual":true},"permissions":{"configurable":false,"plugin":"admin","collection":"permission","via":"role","isVirtual":true}}} object \N \N 21 model_def_plugins::email-designer.email-template {"uid":"plugins::email-designer.email-template","collectionName":"email_templates","kind":"collectionType","info":{"name":"emailTemplate","description":""},"options":{"draftAndPublish":false,"timestamps":["created_at","updated_at"],"increments":true,"comment":""},"attributes":{"design":{"type":"json"},"name":{"type":"string"},"subject":{"type":"string"},"bodyHtml":{"type":"text"},"bodyText":{"type":"text"},"enabled":{"type":"boolean","default":true},"tags":{"type":"json"},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 15 model_def_application::recommended.recommended {"uid":"application::recommended.recommended","collectionName":"recommendeds","kind":"singleType","info":{"name":"recommended","description":""},"options":{"increments":true,"timestamps":["created_at","updated_at"],"draftAndPublish":false},"attributes":{"section":{"type":"component","repeatable":false,"component":"page.popular-games","required":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 18 model_def_strapi::permission {"uid":"strapi::permission","collectionName":"strapi_permission","kind":"collectionType","info":{"name":"Permission","description":""},"options":{"timestamps":["created_at","updated_at"]},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"action":{"type":"string","minLength":1,"configurable":false,"required":true},"subject":{"type":"string","minLength":1,"configurable":false,"required":false},"properties":{"type":"json","configurable":false,"required":false,"default":{}},"conditions":{"type":"json","configurable":false,"required":false,"default":[]},"role":{"configurable":false,"model":"role","plugin":"admin"}}} object \N \N 26 plugin_users-permissions_grant {"email":{"enabled":true,"icon":"envelope"},"discord":{"enabled":false,"icon":"discord","key":"","secret":"","callback":"/auth/discord/callback","scope":["identify","email"]},"facebook":{"enabled":false,"icon":"facebook-square","key":"","secret":"","callback":"/auth/facebook/callback","scope":["email"]},"google":{"enabled":false,"icon":"google","key":"","secret":"","callback":"/auth/google/callback","scope":["email"]},"github":{"enabled":false,"icon":"github","key":"","secret":"","callback":"/auth/github/callback","scope":["user","user:email"]},"microsoft":{"enabled":false,"icon":"windows","key":"","secret":"","callback":"/auth/microsoft/callback","scope":["user.read"]},"twitter":{"enabled":false,"icon":"twitter","key":"","secret":"","callback":"/auth/twitter/callback"},"instagram":{"enabled":false,"icon":"instagram","key":"","secret":"","callback":"/auth/instagram/callback","scope":["user_profile"]},"vk":{"enabled":false,"icon":"vk","key":"","secret":"","callback":"/auth/vk/callback","scope":["email"]},"twitch":{"enabled":false,"icon":"twitch","key":"","secret":"","callback":"/auth/twitch/callback","scope":["user:read:email"]},"linkedin":{"enabled":false,"icon":"linkedin","key":"","secret":"","callback":"/auth/linkedin/callback","scope":["r_liteprofile","r_emailaddress"]},"cognito":{"enabled":false,"icon":"aws","key":"","secret":"","subdomain":"my.subdomain.com","callback":"/auth/cognito/callback","scope":["email","openid","profile"]},"reddit":{"enabled":false,"icon":"reddit","key":"","secret":"","state":true,"callback":"/auth/reddit/callback","scope":["identity"]},"auth0":{"enabled":false,"icon":"","key":"","secret":"","subdomain":"my-tenant.eu","callback":"/auth/auth0/callback","scope":["openid","email","profile"]}} object 25 model_def_plugins::users-permissions.user {"uid":"plugins::users-permissions.user","collectionName":"users-permissions_user","kind":"collectionType","info":{"name":"user","description":""},"options":{"draftAndPublish":false,"timestamps":["created_at","updated_at"]},"attributes":{"username":{"type":"string","minLength":3,"unique":true,"configurable":false,"required":true},"email":{"type":"email","minLength":6,"configurable":false,"required":true},"provider":{"type":"string","configurable":false},"password":{"type":"password","minLength":6,"configurable":false,"private":true},"resetPasswordToken":{"type":"string","configurable":false,"private":true},"confirmationToken":{"type":"string","configurable":false,"private":true},"confirmed":{"type":"boolean","default":false,"configurable":false},"blocked":{"type":"boolean","default":false,"configurable":false},"role":{"model":"role","via":"users","plugin":"users-permissions","configurable":false},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 28 plugin_content_manager_configuration_components::page.popular-games {"uid":"page.popular-games","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"title","defaultSortBy":"title","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":false,"sortable":false}},"title":{"edit":{"label":"Title","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Title","searchable":true,"sortable":true}},"highlight":{"edit":{"label":"Highlight","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Highlight","searchable":false,"sortable":false}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}}},"layouts":{"list":["id","title","games"],"edit":[[{"name":"title","size":6}],[{"name":"highlight","size":12}],[{"name":"games","size":6}]],"editRelations":[]},"isComponent":true} object 27 plugin_upload_settings {"sizeOptimization":false,"responsiveDimensions":false,"autoOrientation":false} object development 23 model_def_plugins::users-permissions.permission {"uid":"plugins::users-permissions.permission","collectionName":"users-permissions_permission","kind":"collectionType","info":{"name":"permission","description":""},"options":{"timestamps":false},"pluginOptions":{"content-manager":{"visible":false}},"attributes":{"type":{"type":"string","required":true,"configurable":false},"controller":{"type":"string","required":true,"configurable":false},"action":{"type":"string","required":true,"configurable":false},"enabled":{"type":"boolean","required":true,"configurable":false},"policy":{"type":"string","configurable":false},"role":{"model":"role","via":"permissions","plugin":"users-permissions","configurable":false},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 33 plugin_users-permissions_email {"reset_password":{"display":"Email.template.reset_password","icon":"sync","options":{"from":{"name":"Administration Panel","email":"no-reply@strapi.io"},"response_email":"","object":"Reset password","message":"

We heard that you lost your password. Sorry about that!

\\n\\n

But don’t worry! You can use the following link to reset your password:

\\n

<%= URL %>?code=<%= TOKEN %>

\\n\\n

Thanks.

"}},"email_confirmation":{"display":"Email.template.email_confirmation","icon":"check-square","options":{"from":{"name":"Administration Panel","email":"no-reply@strapi.io"},"response_email":"","object":"Account confirmation","message":"

Thank you for registering!

\\n\\n

You have to confirm your email address. Please click on the link below.

\\n\\n

<%= URL %>?confirmation=<%= CODE %>

\\n\\n

Thanks.

"}}} object 34 plugin_content_manager_configuration_content_types::application::category.category {"uid":"application::category.category","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"slug":{"edit":{"label":"Slug","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Slug","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","slug","games"],"editRelations":["games"],"edit":[[{"name":"name","size":6},{"name":"slug","size":6}]]}} object 37 plugin_content_manager_configuration_content_types::application::game.game {"uid":"application::game.game","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"slug":{"edit":{"label":"Slug","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Slug","searchable":true,"sortable":true}},"short_description":{"edit":{"label":"Short_description","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Short_description","searchable":true,"sortable":true}},"description":{"edit":{"label":"Description","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Description","searchable":false,"sortable":false}},"price":{"edit":{"label":"Price","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Price","searchable":true,"sortable":true}},"release_date":{"edit":{"label":"Release_date","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Release_date","searchable":true,"sortable":true}},"rating":{"edit":{"label":"Rating","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Rating","searchable":true,"sortable":true}},"cover":{"edit":{"label":"Cover","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Cover","searchable":false,"sortable":false}},"gallery":{"edit":{"label":"Gallery","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Gallery","searchable":false,"sortable":false}},"categories":{"edit":{"label":"Categories","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Categories","searchable":false,"sortable":false}},"developers":{"edit":{"label":"Developers","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Developers","searchable":false,"sortable":false}},"platforms":{"edit":{"label":"Platforms","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Platforms","searchable":false,"sortable":false}},"publisher":{"edit":{"label":"Publisher","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Publisher","searchable":true,"sortable":true}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","slug","short_description"],"editRelations":["categories","developers","platforms","publisher"],"edit":[[{"name":"name","size":6},{"name":"slug","size":6}],[{"name":"short_description","size":6}],[{"name":"description","size":12}],[{"name":"price","size":4},{"name":"release_date","size":4}],[{"name":"rating","size":6},{"name":"cover","size":6}],[{"name":"gallery","size":6}]]}} object 35 plugin_content_manager_configuration_content_types::application::banner.banner {"uid":"application::banner.banner","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"title","defaultSortBy":"title","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"image":{"edit":{"label":"Image","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Image","searchable":false,"sortable":false}},"title":{"edit":{"label":"Title","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Title","searchable":true,"sortable":true}},"subtitle":{"edit":{"label":"Subtitle","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Subtitle","searchable":true,"sortable":true}},"button":{"edit":{"label":"Button","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Button","searchable":false,"sortable":false}},"ribbon":{"edit":{"label":"Ribbon","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Ribbon","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","image","title","subtitle"],"editRelations":[],"edit":[[{"name":"image","size":6},{"name":"title","size":6}],[{"name":"subtitle","size":6}],[{"name":"button","size":12}],[{"name":"ribbon","size":12}]]}} object 45 plugin_content_manager_configuration_content_types::application::platform.platform {"uid":"application::platform.platform","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"slug":{"edit":{"label":"Slug","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Slug","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","slug","games"],"editRelations":["games"],"edit":[[{"name":"name","size":6},{"name":"slug","size":6}]]}} object 36 plugin_content_manager_configuration_content_types::application::developer.developer {"uid":"application::developer.developer","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"slug":{"edit":{"label":"Slug","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Slug","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","slug","games"],"editRelations":["games"],"edit":[[{"name":"name","size":6},{"name":"slug","size":6}]]}} object 46 plugin_content_manager_configuration_content_types::plugins::users-permissions.permission {"uid":"plugins::users-permissions.permission","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"type","defaultSortBy":"type","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"type":{"edit":{"label":"Type","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Type","searchable":true,"sortable":true}},"controller":{"edit":{"label":"Controller","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Controller","searchable":true,"sortable":true}},"action":{"edit":{"label":"Action","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Action","searchable":true,"sortable":true}},"enabled":{"edit":{"label":"Enabled","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Enabled","searchable":true,"sortable":true}},"policy":{"edit":{"label":"Policy","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Policy","searchable":true,"sortable":true}},"role":{"edit":{"label":"Role","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Role","searchable":true,"sortable":true}}},"layouts":{"list":["id","type","controller","action"],"editRelations":["role"],"edit":[[{"name":"type","size":6},{"name":"controller","size":6}],[{"name":"action","size":6},{"name":"enabled","size":4}],[{"name":"policy","size":6}]]}} object 38 plugin_content_manager_configuration_content_types::application::home.home {"uid":"application::home.home","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"id","defaultSortBy":"id","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"newGames":{"edit":{"label":"NewGames","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"NewGames","searchable":false,"sortable":false}},"upcomingGames":{"edit":{"label":"UpcomingGames","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"UpcomingGames","searchable":false,"sortable":false}},"freeGames":{"edit":{"label":"FreeGames","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"FreeGames","searchable":false,"sortable":false}},"popularGames":{"edit":{"label":"PopularGames","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"PopularGames","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","created_at","updated_at"],"editRelations":[],"edit":[[{"name":"newGames","size":12}],[{"name":"upcomingGames","size":12}],[{"name":"freeGames","size":12}],[{"name":"popularGames","size":12}]]}} object 48 plugin_content_manager_configuration_content_types::plugins::users-permissions.user {"uid":"plugins::users-permissions.user","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"username","defaultSortBy":"username","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"username":{"edit":{"label":"Username","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Username","searchable":true,"sortable":true}},"email":{"edit":{"label":"Email","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Email","searchable":true,"sortable":true}},"provider":{"edit":{"label":"Provider","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Provider","searchable":true,"sortable":true}},"password":{"edit":{"label":"Password","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Password","searchable":true,"sortable":true}},"resetPasswordToken":{"edit":{"label":"ResetPasswordToken","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"ResetPasswordToken","searchable":true,"sortable":true}},"confirmationToken":{"edit":{"label":"ConfirmationToken","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"ConfirmationToken","searchable":true,"sortable":true}},"confirmed":{"edit":{"label":"Confirmed","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Confirmed","searchable":true,"sortable":true}},"blocked":{"edit":{"label":"Blocked","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Blocked","searchable":true,"sortable":true}},"role":{"edit":{"label":"Role","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Role","searchable":true,"sortable":true}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","username","email","confirmed"],"editRelations":["role"],"edit":[[{"name":"username","size":6},{"name":"email","size":6}],[{"name":"password","size":6},{"name":"confirmed","size":4}],[{"name":"blocked","size":4}]]}} object 39 plugin_content_manager_configuration_content_types::application::order.order {"uid":"application::order.order","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"payment_intent_id","defaultSortBy":"payment_intent_id","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"user":{"edit":{"label":"User","description":"","placeholder":"","visible":true,"editable":true,"mainField":"username"},"list":{"label":"User","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"payment_intent_id":{"edit":{"label":"Payment_intent_id","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Payment_intent_id","searchable":true,"sortable":true}},"card_brand":{"edit":{"label":"Card_brand","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Card_brand","searchable":true,"sortable":true}},"card_last4":{"edit":{"label":"Card_last4","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Card_last4","searchable":true,"sortable":true}},"total_in_cents":{"edit":{"label":"Total_in_cents","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Total_in_cents","searchable":true,"sortable":true}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","user","games","payment_intent_id"],"editRelations":["user","games"],"edit":[[{"name":"payment_intent_id","size":6},{"name":"card_brand","size":6}],[{"name":"card_last4","size":6},{"name":"total_in_cents","size":4}]]}} object 49 plugin_content_manager_configuration_content_types::strapi::user {"uid":"strapi::user","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"firstname","defaultSortBy":"firstname","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"firstname":{"edit":{"label":"Firstname","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Firstname","searchable":true,"sortable":true}},"lastname":{"edit":{"label":"Lastname","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Lastname","searchable":true,"sortable":true}},"username":{"edit":{"label":"Username","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Username","searchable":true,"sortable":true}},"email":{"edit":{"label":"Email","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Email","searchable":true,"sortable":true}},"password":{"edit":{"label":"Password","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Password","searchable":true,"sortable":true}},"resetPasswordToken":{"edit":{"label":"ResetPasswordToken","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"ResetPasswordToken","searchable":true,"sortable":true}},"registrationToken":{"edit":{"label":"RegistrationToken","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"RegistrationToken","searchable":true,"sortable":true}},"isActive":{"edit":{"label":"IsActive","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"IsActive","searchable":true,"sortable":true}},"roles":{"edit":{"label":"Roles","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Roles","searchable":false,"sortable":false}},"blocked":{"edit":{"label":"Blocked","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Blocked","searchable":true,"sortable":true}},"preferedLanguage":{"edit":{"label":"PreferedLanguage","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"PreferedLanguage","searchable":true,"sortable":true}}},"layouts":{"list":["id","firstname","lastname","username"],"editRelations":["roles"],"edit":[[{"name":"firstname","size":6},{"name":"lastname","size":6}],[{"name":"username","size":6},{"name":"email","size":6}],[{"name":"password","size":6},{"name":"resetPasswordToken","size":6}],[{"name":"registrationToken","size":6},{"name":"isActive","size":4}],[{"name":"blocked","size":4},{"name":"preferedLanguage","size":6}]]}} object 40 plugin_content_manager_configuration_content_types::application::publisher.publisher {"uid":"application::publisher.publisher","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"slug":{"edit":{"label":"Slug","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Slug","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","slug","games"],"editRelations":["games"],"edit":[[{"name":"name","size":6},{"name":"slug","size":6}]]}} object 41 plugin_content_manager_configuration_content_types::application::recommended.recommended {"uid":"application::recommended.recommended","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"id","defaultSortBy":"id","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"section":{"edit":{"label":"Section","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Section","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","created_at","updated_at"],"editRelations":[],"edit":[[{"name":"section","size":12}]]}} object 42 plugin_content_manager_configuration_content_types::application::wishlist.wishlist {"uid":"application::wishlist.wishlist","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"id","defaultSortBy":"id","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"user":{"edit":{"label":"User","description":"","placeholder":"","visible":true,"editable":true,"mainField":"username"},"list":{"label":"User","searchable":true,"sortable":true}},"games":{"edit":{"label":"Games","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Games","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","user","games","created_at"],"editRelations":["user","games"],"edit":[]}} object 43 plugin_content_manager_configuration_content_types::strapi::permission {"uid":"strapi::permission","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"action","defaultSortBy":"action","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"action":{"edit":{"label":"Action","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Action","searchable":true,"sortable":true}},"subject":{"edit":{"label":"Subject","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Subject","searchable":true,"sortable":true}},"properties":{"edit":{"label":"Properties","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Properties","searchable":false,"sortable":false}},"conditions":{"edit":{"label":"Conditions","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Conditions","searchable":false,"sortable":false}},"role":{"edit":{"label":"Role","description":"","placeholder":"","visible":true,"editable":true,"mainField":"name"},"list":{"label":"Role","searchable":true,"sortable":true}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","action","subject","role"],"editRelations":["role"],"edit":[[{"name":"action","size":6},{"name":"subject","size":6}],[{"name":"properties","size":12}],[{"name":"conditions","size":12}]]}} object 50 plugin_content_manager_configuration_content_types::plugins::email-designer.email-template {"uid":"plugins::email-designer.email-template","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"design":{"edit":{"label":"Design","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Design","searchable":false,"sortable":false}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"subject":{"edit":{"label":"Subject","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Subject","searchable":true,"sortable":true}},"bodyHtml":{"edit":{"label":"BodyHtml","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"BodyHtml","searchable":true,"sortable":true}},"bodyText":{"edit":{"label":"BodyText","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"BodyText","searchable":true,"sortable":true}},"enabled":{"edit":{"label":"Enabled","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Enabled","searchable":true,"sortable":true}},"tags":{"edit":{"label":"Tags","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Tags","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","subject","bodyHtml"],"editRelations":[],"edit":[[{"name":"design","size":12}],[{"name":"name","size":6},{"name":"subject","size":6}],[{"name":"bodyHtml","size":6},{"name":"bodyText","size":6}],[{"name":"enabled","size":4}],[{"name":"tags","size":12}]]}} object 51 plugin_content_manager_configuration_content_types::plugins::upload.file {"uid":"plugins::upload.file","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"alternativeText":{"edit":{"label":"AlternativeText","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"AlternativeText","searchable":true,"sortable":true}},"caption":{"edit":{"label":"Caption","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Caption","searchable":true,"sortable":true}},"width":{"edit":{"label":"Width","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Width","searchable":true,"sortable":true}},"height":{"edit":{"label":"Height","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Height","searchable":true,"sortable":true}},"formats":{"edit":{"label":"Formats","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Formats","searchable":false,"sortable":false}},"hash":{"edit":{"label":"Hash","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Hash","searchable":true,"sortable":true}},"ext":{"edit":{"label":"Ext","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Ext","searchable":true,"sortable":true}},"mime":{"edit":{"label":"Mime","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Mime","searchable":true,"sortable":true}},"size":{"edit":{"label":"Size","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Size","searchable":true,"sortable":true}},"url":{"edit":{"label":"Url","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Url","searchable":true,"sortable":true}},"previewUrl":{"edit":{"label":"PreviewUrl","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"PreviewUrl","searchable":true,"sortable":true}},"provider":{"edit":{"label":"Provider","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Provider","searchable":true,"sortable":true}},"provider_metadata":{"edit":{"label":"Provider_metadata","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Provider_metadata","searchable":false,"sortable":false}},"related":{"edit":{"label":"Related","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Related","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","alternativeText","caption"],"editRelations":["related"],"edit":[[{"name":"name","size":6},{"name":"alternativeText","size":6}],[{"name":"caption","size":6},{"name":"width","size":4}],[{"name":"height","size":4}],[{"name":"formats","size":12}],[{"name":"hash","size":6},{"name":"ext","size":6}],[{"name":"mime","size":6},{"name":"size","size":4}],[{"name":"url","size":6},{"name":"previewUrl","size":6}],[{"name":"provider","size":6}],[{"name":"provider_metadata","size":12}]]}} object 52 plugin_users-permissions_advanced {"unique_email":true,"allow_register":true,"email_confirmation":false,"email_reset_password":null,"email_confirmation_redirection":null,"default_role":"authenticated"} object 44 plugin_content_manager_configuration_content_types::strapi::role {"uid":"strapi::role","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"code":{"edit":{"label":"Code","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Code","searchable":true,"sortable":true}},"description":{"edit":{"label":"Description","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Description","searchable":true,"sortable":true}},"users":{"edit":{"label":"Users","description":"","placeholder":"","visible":true,"editable":true,"mainField":"firstname"},"list":{"label":"Users","searchable":false,"sortable":false}},"permissions":{"edit":{"label":"Permissions","description":"","placeholder":"","visible":true,"editable":true,"mainField":"action"},"list":{"label":"Permissions","searchable":false,"sortable":false}},"created_at":{"edit":{"label":"Created_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Created_at","searchable":true,"sortable":true}},"updated_at":{"edit":{"label":"Updated_at","description":"","placeholder":"","visible":false,"editable":true},"list":{"label":"Updated_at","searchable":true,"sortable":true}}},"layouts":{"list":["id","name","code","description"],"editRelations":["users","permissions"],"edit":[[{"name":"name","size":6},{"name":"code","size":6}],[{"name":"description","size":6}]]}} object 53 core_admin_auth {"providers":{"autoRegister":false,"defaultRole":null}} object 47 plugin_content_manager_configuration_content_types::plugins::users-permissions.role {"uid":"plugins::users-permissions.role","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"name","defaultSortBy":"name","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":true,"sortable":true}},"name":{"edit":{"label":"Name","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Name","searchable":true,"sortable":true}},"description":{"edit":{"label":"Description","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Description","searchable":true,"sortable":true}},"type":{"edit":{"label":"Type","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Type","searchable":true,"sortable":true}},"permissions":{"edit":{"label":"Permissions","description":"","placeholder":"","visible":true,"editable":true,"mainField":"type"},"list":{"label":"Permissions","searchable":false,"sortable":false}},"users":{"edit":{"label":"Users","description":"","placeholder":"","visible":true,"editable":true,"mainField":"username"},"list":{"label":"Users","searchable":false,"sortable":false}}},"layouts":{"list":["id","name","description","type"],"editRelations":["permissions","users"],"edit":[[{"name":"name","size":6},{"name":"description","size":6}],[{"name":"type","size":6}]]}} object 7 model_def_application::banner.banner {"uid":"application::banner.banner","collectionName":"banners","kind":"collectionType","info":{"name":"banner","description":""},"options":{"increments":true,"timestamps":["created_at","updated_at"],"draftAndPublish":true},"attributes":{"image":{"model":"file","via":"related","allowedTypes":["images"],"plugin":"upload","required":true},"title":{"type":"string","required":true},"subtitle":{"type":"text","required":true,"maxLength":150},"button":{"type":"component","repeatable":false,"component":"page.button","required":true},"ribbon":{"type":"component","repeatable":false,"component":"page.ribbon"},"published_at":{"type":"datetime","configurable":false,"writable":true,"visible":false},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 12 model_def_application::order.order {"uid":"application::order.order","collectionName":"orders","kind":"collectionType","info":{"name":"Order","description":""},"options":{"increments":true,"timestamps":["created_at","updated_at"],"draftAndPublish":false},"attributes":{"user":{"plugin":"users-permissions","model":"user"},"games":{"collection":"game","attribute":"game","column":"id","isVirtual":true},"payment_intent_id":{"type":"string"},"card_brand":{"type":"string"},"card_last4":{"type":"string"},"total_in_cents":{"type":"biginteger"},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 22 model_def_plugins::upload.file {"uid":"plugins::upload.file","collectionName":"upload_file","kind":"collectionType","info":{"name":"file","description":""},"options":{"timestamps":["created_at","updated_at"]},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"name":{"type":"string","configurable":false,"required":true},"alternativeText":{"type":"string","configurable":false},"caption":{"type":"string","configurable":false},"width":{"type":"integer","configurable":false},"height":{"type":"integer","configurable":false},"formats":{"type":"json","configurable":false},"hash":{"type":"string","configurable":false,"required":true},"ext":{"type":"string","configurable":false},"mime":{"type":"string","configurable":false,"required":true},"size":{"type":"decimal","configurable":false,"required":true},"url":{"type":"string","configurable":false,"required":true},"previewUrl":{"type":"string","configurable":false},"provider":{"type":"string","configurable":false,"required":true},"provider_metadata":{"type":"json","configurable":false},"related":{"collection":"*","filter":"field","configurable":false},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N 29 plugin_content_manager_configuration_components::page.button {"uid":"page.button","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"label","defaultSortBy":"label","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":false,"sortable":false}},"label":{"edit":{"label":"Label","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Label","searchable":true,"sortable":true}},"link":{"edit":{"label":"Link","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Link","searchable":true,"sortable":true}}},"layouts":{"list":["id","label","link"],"edit":[[{"name":"label","size":6},{"name":"link","size":6}]],"editRelations":[]},"isComponent":true} object 32 plugin_content_manager_configuration_components::page.ribbon {"uid":"page.ribbon","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"text","defaultSortBy":"text","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":false,"sortable":false}},"text":{"edit":{"label":"Text","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Text","searchable":true,"sortable":true}},"color":{"edit":{"label":"Color","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Color","searchable":true,"sortable":true}},"size":{"edit":{"label":"Size","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Size","searchable":true,"sortable":true}}},"layouts":{"list":["id","text","color","size"],"edit":[[{"name":"text","size":6},{"name":"color","size":6}],[{"name":"size","size":6}]],"editRelations":[]},"isComponent":true} object 31 plugin_content_manager_configuration_components::page.section {"uid":"page.section","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"title","defaultSortBy":"title","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":false,"sortable":false}},"title":{"edit":{"label":"Title","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Title","searchable":true,"sortable":true}},"highlight":{"edit":{"label":"Highlight","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Highlight","searchable":false,"sortable":false}}},"layouts":{"list":["id","title"],"edit":[[{"name":"title","size":6}],[{"name":"highlight","size":12}]],"editRelations":[]},"isComponent":true} object 30 plugin_content_manager_configuration_components::page.highlight {"uid":"page.highlight","settings":{"bulkable":true,"filterable":true,"searchable":true,"pageSize":10,"mainField":"title","defaultSortBy":"title","defaultSortOrder":"ASC"},"metadatas":{"id":{"edit":{},"list":{"label":"Id","searchable":false,"sortable":false}},"title":{"edit":{"label":"Title","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Title","searchable":true,"sortable":true}},"subtitle":{"edit":{"label":"Subtitle","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Subtitle","searchable":true,"sortable":true}},"background":{"edit":{"label":"Background","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Background","searchable":false,"sortable":false}},"floatImage":{"edit":{"label":"FloatImage","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"FloatImage","searchable":false,"sortable":false}},"buttonLabel":{"edit":{"label":"ButtonLabel","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"ButtonLabel","searchable":true,"sortable":true}},"buttonLink":{"edit":{"label":"ButtonLink","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"ButtonLink","searchable":true,"sortable":true}},"alignment":{"edit":{"label":"Alignment","description":"","placeholder":"","visible":true,"editable":true},"list":{"label":"Alignment","searchable":true,"sortable":true}}},"layouts":{"list":["id","title","subtitle","background"],"edit":[[{"name":"title","size":6},{"name":"subtitle","size":6}],[{"name":"background","size":6},{"name":"floatImage","size":6}],[{"name":"buttonLabel","size":6},{"name":"buttonLink","size":6}],[{"name":"alignment","size":6}]],"editRelations":[]},"isComponent":true} object 3 model_def_page.highlight {"uid":"page.highlight","collectionName":"components_page_highlights","info":{"name":"highlight","icon":"star"},"options":{"timestamps":false},"attributes":{"title":{"type":"string","required":true},"subtitle":{"type":"text","required":true},"background":{"model":"file","via":"related","allowedTypes":["images"],"plugin":"upload","required":true},"floatImage":{"model":"file","via":"related","allowedTypes":["images"],"plugin":"upload","required":false},"buttonLabel":{"type":"string","required":true},"buttonLink":{"type":"string","required":true},"alignment":{"type":"enumeration","enum":["right","left"],"default":"right"}}} object \N \N 20 model_def_strapi::user {"uid":"strapi::user","collectionName":"strapi_administrator","kind":"collectionType","info":{"name":"User","description":""},"options":{"timestamps":false},"pluginOptions":{"content-manager":{"visible":false},"content-type-builder":{"visible":false}},"attributes":{"firstname":{"type":"string","unique":false,"minLength":1,"configurable":false,"required":false},"lastname":{"type":"string","unique":false,"minLength":1,"configurable":false,"required":false},"username":{"type":"string","unique":false,"configurable":false,"required":false},"email":{"type":"email","minLength":6,"configurable":false,"required":true,"unique":true,"private":true},"password":{"type":"password","minLength":6,"configurable":false,"required":false,"private":true},"resetPasswordToken":{"type":"string","configurable":false,"private":true},"registrationToken":{"type":"string","configurable":false,"private":true},"isActive":{"type":"boolean","default":false,"configurable":false,"private":true},"roles":{"collection":"role","collectionName":"strapi_users_roles","via":"users","dominant":true,"plugin":"admin","configurable":false,"private":true,"attribute":"role","column":"id","isVirtual":true},"blocked":{"type":"boolean","default":false,"configurable":false,"private":true},"preferedLanguage":{"type":"string","configurable":false,"required":false}}} object \N \N 24 model_def_plugins::users-permissions.role {"uid":"plugins::users-permissions.role","collectionName":"users-permissions_role","kind":"collectionType","info":{"name":"role","description":""},"options":{"timestamps":false},"pluginOptions":{"content-manager":{"visible":false}},"attributes":{"name":{"type":"string","minLength":3,"required":true,"configurable":false},"description":{"type":"string","configurable":false},"type":{"type":"string","unique":true,"configurable":false},"permissions":{"collection":"permission","via":"role","plugin":"users-permissions","configurable":false,"isVirtual":true},"users":{"collection":"user","via":"role","configurable":false,"plugin":"users-permissions","isVirtual":true},"created_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true},"updated_by":{"model":"user","plugin":"admin","configurable":false,"writable":false,"visible":false,"private":true}}} object \N \N \. -- -- TOC entry 3376 (class 0 OID 549013) -- Dependencies: 227 -- Data for Name: developers; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.developers (id, name, slug, created_by, updated_by, created_at, updated_at) FROM stdin; 1 CD PROJEKT RED cd-projekt-red \N \N 2021-05-20 12:02:45.355-03 2021-05-20 12:02:45.355-03 2 Experiment 101 experiment-101 \N \N 2021-05-20 12:02:45.355-03 2021-05-20 12:02:45.355-03 3 Troika Games troika-games \N \N 2021-05-20 12:02:45.356-03 2021-05-20 12:02:45.356-03 4 Black Eye Games black-eye-games \N \N 2021-05-20 12:02:45.356-03 2021-05-20 12:02:45.356-03 5 Larian Studios larian-studios \N \N 2021-05-20 12:02:45.356-03 2021-05-20 12:02:45.356-03 6 New World Computing, Inc. new-world-computing-inc \N \N 2021-05-20 12:02:45.356-03 2021-05-20 12:02:45.356-03 7 Bugbyte Ltd. bugbyte-ltd \N \N 2021-05-20 12:02:45.361-03 2021-05-20 12:02:45.361-03 8 Terminal Reality terminal-reality \N \N 2021-05-20 12:02:45.361-03 2021-05-20 12:02:45.361-03 9 Can Explode can-explode \N \N 2021-05-20 12:02:45.361-03 2021-05-20 12:02:45.361-03 10 Blizzard Entertainment, Inc. blizzard-entertainment-inc \N \N 2021-05-20 12:02:45.361-03 2021-05-20 12:02:45.361-03 11 Polymorph Games polymorph-games \N \N 2021-05-20 12:02:45.396-03 2021-05-20 12:02:45.396-03 12 Lo-Fi Games lo-fi-games \N \N 2021-05-20 12:02:45.396-03 2021-05-20 12:02:45.396-03 13 Bethesda Game Studios bethesda-game-studios \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 14 Easy Trigger Games easy-trigger-games \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 15 Obsidian Entertainment obsidian-entertainment \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 16 Irrational Games irrational-games \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 17 Heart Machine heart-machine \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 18 ZA/UM zaum \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 19 Thunder Lotus Games thunder-lotus-games \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 20 SeithCG seithcg \N \N 2021-05-20 12:02:45.398-03 2021-05-20 12:02:45.398-03 21 Konami Computer Entertainment Japan, Inc. konami-computer-entertainment-japan-inc \N \N 2021-05-20 12:02:45.429-03 2021-05-20 12:02:45.429-03 22 8BitSkull 8bitskull \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 23 Draw Distance draw-distance \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 24 Different Tales different-tales \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 25 Forever Entertainment S. A. forever-entertainment-s-a \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 26 Hidden Fields hidden-fields \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 27 HuniePot huniepot \N \N 2021-05-20 12:02:45.433-03 2021-05-20 12:02:45.433-03 28 Madruga Works madruga-works \N \N 2021-05-20 12:02:45.437-03 2021-05-20 12:02:45.437-03 29 Toukana Interactive toukana-interactive \N \N 2021-05-20 12:02:45.438-03 2021-05-20 12:02:45.438-03 30 Askiisoft askiisoft \N \N 2021-05-20 12:02:45.438-03 2021-05-20 12:02:45.438-03 31 Team Silent team-silent \N \N 2021-05-20 12:02:45.466-03 2021-05-20 12:02:45.466-03 32 Altari Games altari-games \N \N 2021-05-20 12:02:45.468-03 2021-05-20 12:02:45.468-03 33 inkle Ltd inkle-ltd \N \N 2021-05-20 12:02:45.468-03 2021-05-20 12:02:45.468-03 34 Hopoo Games hopoo-games \N \N 2021-05-20 12:02:45.468-03 2021-05-20 12:02:45.468-03 35 JoyMasher joymasher \N \N 2021-05-20 12:02:45.468-03 2021-05-20 12:02:45.468-03 36 Sukeban Games sukeban-games \N \N 2021-05-20 12:03:51.524-03 2021-05-20 12:03:51.524-03 37 Eugen Systems eugen-systems \N \N 2021-05-20 12:04:15.794-03 2021-05-20 12:04:15.794-03 38 Nihon Falcom Corporation nihon-falcom-corporation \N \N 2021-05-20 12:04:15.794-03 2021-05-20 12:04:15.794-03 39 Stellar Jockeys, Gausswerks stellar-jockeys-gausswerks \N \N 2021-05-20 12:04:15.794-03 2021-05-20 12:04:15.794-03 40 The Knights of Unity the-knights-of-unity \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 41 Digital Dreams Entertainment LLC digital-dreams-entertainment-llc \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 42 Nihon Falcom Corporation / Engine Software BV / PH3 GmbH nihon-falcom-corporation-engine-software-bv-ph3-gmbh \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 43 Idea Factory, Inc. idea-factory-inc \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 44 Motion Twin motion-twin \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 45 Owlcat Games owlcat-games \N \N 2021-05-20 12:04:15.802-03 2021-05-20 12:04:15.802-03 46 Warhorse Studios warhorse-studios \N \N 2021-05-20 12:04:15.821-03 2021-05-20 12:04:15.821-03 47 Claudiu Kiss, The Irregular Corporation claudiu-kiss-the-irregular-corporation \N \N 2021-05-20 12:04:15.834-03 2021-05-20 12:04:15.834-03 48 Mimimi Games mimimi-games \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 49 Mimimi Productions mimimi-productions \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 50 Eurocom, THQ Nordic eurocom-thq-nordic \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 51 imaginarylab imaginarylab \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 52 Deck13 deck13 \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 53 Sabotage sabotage \N \N 2021-05-20 12:04:15.836-03 2021-05-20 12:04:15.836-03 54 Creative Forge Games creative-forge-games \N \N 2021-05-20 12:04:15.839-03 2021-05-20 12:04:15.839-03 55 FURYU Corporation, Engine Software BV furyu-corporation-engine-software-bv \N \N 2021-05-20 12:04:15.842-03 2021-05-20 12:04:15.842-03 56 Fool's Theory fools-theory \N \N 2021-05-20 12:04:15.857-03 2021-05-20 12:04:15.857-03 57 Dekovir Entertainment dekovir-entertainment \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 58 Goldhawk Interactive goldhawk-interactive \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 59 07th Expansion 07th-expansion \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 60 Black Forest Games, Pandemic Studios black-forest-games-pandemic-studios \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 61 Plausible Concept plausible-concept \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 62 Revolution Software revolution-software \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 63 Eclipse Productions eclipse-productions \N \N 2021-05-20 12:04:15.869-03 2021-05-20 12:04:15.869-03 64 Origin Systems origin-systems \N \N 2021-05-20 12:04:15.873-03 2021-05-20 12:04:15.873-03 65 Robit Studios robit-studios \N \N 2021-05-20 12:04:15.878-03 2021-05-20 12:04:15.878-03 66 3D Realms Entertainment 3d-realms-entertainment \N \N 2021-05-20 12:04:15.898-03 2021-05-20 12:04:15.898-03 67 The Brotherhood the-brotherhood \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 68 Lost Pilgrims Studio lost-pilgrims-studio \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 69 Red Hook Studios red-hook-studios \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 70 MorbidWare morbidware \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 71 3DClouds 3dclouds \N \N 2021-05-20 12:06:07.57-03 2021-05-20 12:06:07.57-03 72 Night Dive Studios night-dive-studios \N \N 2021-05-20 12:06:07.57-03 2021-05-20 12:06:07.57-03 73 Black Lab Games black-lab-games \N \N 2021-05-20 12:06:07.57-03 2021-05-20 12:06:07.57-03 74 DotEmu dotemu \N \N 2021-05-20 12:06:07.575-03 2021-05-20 12:06:07.575-03 75 KING Art Games king-art-games \N \N 2021-05-20 12:06:07.575-03 2021-05-20 12:06:07.575-03 76 Skrollcat Studio skrollcat-studio \N \N 2021-05-20 12:06:07.575-03 2021-05-20 12:06:07.575-03 77 MuHa Games, Eerie Forest Studio muha-games-eerie-forest-studio \N \N 2021-05-20 12:06:07.575-03 2021-05-20 12:06:07.575-03 78 Caligari Games caligari-games \N \N 2021-05-20 12:06:07.576-03 2021-05-20 12:06:07.576-03 79 Red Martyr Entertainment red-martyr-entertainment \N \N 2021-05-20 12:06:07.576-03 2021-05-20 12:06:07.576-03 80 Alien Pixel Studios alien-pixel-studios \N \N 2021-05-20 12:06:07.576-03 2021-05-20 12:06:07.576-03 81 RUNWILD Entertainment runwild-entertainment \N \N 2021-05-20 12:06:07.606-03 2021-05-20 12:06:07.606-03 82 Triskell Interactice triskell-interactice \N \N 2021-05-20 12:06:07.606-03 2021-05-20 12:06:07.606-03 83 Ceres Games ceres-games \N \N 2021-05-20 12:06:07.606-03 2021-05-20 12:06:07.606-03 84 Humble Grove, Hana Lee, Cel Davison, Adrienne Lombardo, Eli Rainsberry humble-grove-hana-lee-cel-davison-adrienne-lombardo-eli-rainsberry \N \N 2021-05-20 12:06:07.607-03 2021-05-20 12:06:07.607-03 85 Phigames phigames \N \N 2021-05-20 12:06:07.607-03 2021-05-20 12:06:07.607-03 86 Fallen Flag Studio fallen-flag-studio \N \N 2021-05-20 12:06:07.607-03 2021-05-20 12:06:07.607-03 87 @unepic_fran unepicfran \N \N 2021-05-20 12:06:07.609-03 2021-05-20 12:06:07.609-03 88 Far-Flung Games far-flung-games \N \N 2021-05-20 12:06:07.61-03 2021-05-20 12:06:07.61-03 89 Metamorphosis Games metamorphosis-games \N \N 2021-05-20 12:06:07.61-03 2021-05-20 12:06:07.61-03 90 Bedtime Digital Games bedtime-digital-games \N \N 2021-05-20 12:06:07.61-03 2021-05-20 12:06:07.61-03 91 LABS Works labs-works \N \N 2021-05-20 12:06:07.638-03 2021-05-20 12:06:07.638-03 92 Backwoods Entertainment backwoods-entertainment \N \N 2021-05-20 12:06:07.638-03 2021-05-20 12:06:07.638-03 96 COWCAT cowcat \N \N 2021-05-20 12:06:07.641-03 2021-05-20 12:06:07.641-03 93 Hungry Couch Games hungry-couch-games \N \N 2021-05-20 12:06:07.64-03 2021-05-20 12:06:07.64-03 102 Dillon Rogers, David Szymanski dillon-rogers-david-szymanski \N \N 2021-05-20 12:06:07.67-03 2021-05-20 12:06:07.67-03 111 WhileOne Productions whileone-productions \N \N 2021-05-20 12:06:07.704-03 2021-05-20 12:06:07.704-03 94 Modern Storyteller modern-storyteller \N \N 2021-05-20 12:06:07.64-03 2021-05-20 12:06:07.64-03 103 Studio Fizbin studio-fizbin \N \N 2021-05-20 12:06:07.67-03 2021-05-20 12:06:07.67-03 112 Senscape senscape \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 95 Cyan Worlds cyan-worlds \N \N 2021-05-20 12:06:07.641-03 2021-05-20 12:06:07.641-03 104 Flazm flazm \N \N 2021-05-20 12:06:07.672-03 2021-05-20 12:06:07.672-03 97 Artisan Studios artisan-studios \N \N 2021-05-20 12:06:07.641-03 2021-05-20 12:06:07.641-03 106 Andriy Bychkovskyi andriy-bychkovskyi \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 114 Eremite Games eremite-games \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 98 kaleidoscube kaleidoscube \N \N 2021-05-20 12:06:07.642-03 2021-05-20 12:06:07.642-03 107 niceplay games niceplay-games \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 116 Midgar Studio midgar-studio \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 99 [K]ayinworks kayinworks \N \N 2021-05-20 12:06:07.642-03 2021-05-20 12:06:07.642-03 108 Starni Games starni-games \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 100 TBC tbc \N \N 2021-05-20 12:06:07.642-03 2021-05-20 12:06:07.642-03 110 Outstar & Memoriesin8bit outstar-and-memoriesin8bit \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 115 Serious Brothers serious-brothers \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 101 Only By Midnight Ltd. only-by-midnight-ltd \N \N 2021-05-20 12:06:07.669-03 2021-05-20 12:06:07.669-03 105 Roman Glebenkov roman-glebenkov \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 113 Event Horizon event-horizon \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 109 Wormwood Studios wormwood-studios \N \N 2021-05-20 12:06:07.675-03 2021-05-20 12:06:07.675-03 \. -- -- TOC entry 3382 (class 0 OID 549055) -- Dependencies: 233 -- Data for Name: developers_games__games_developers; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.developers_games__games_developers (id, game_id, developer_id) FROM stdin; 1 1 1 2 2 1 3 3 5 4 4 1 5 5 13 6 6 2 7 7 15 8 8 26 9 9 14 10 10 25 11 11 16 12 12 7 13 13 33 14 14 6 15 15 28 16 16 1 17 17 22 18 19 23 19 20 11 20 21 31 21 22 10 22 18 12 23 23 9 24 24 1 25 25 1 26 27 32 27 26 21 28 28 20 29 29 5 30 30 24 31 31 35 32 32 27 33 33 1 34 34 21 35 36 8 36 37 1 37 35 3 38 38 18 39 39 19 40 40 23 41 41 17 42 42 30 43 43 4 44 44 10 45 45 34 46 46 15 47 47 29 48 48 1 49 49 36 50 50 37 51 51 39 52 52 42 53 53 38 54 55 47 55 54 1 56 56 45 57 57 57 58 58 56 59 59 46 60 60 55 61 61 19 62 62 66 63 63 15 64 64 52 65 65 51 66 66 41 67 67 44 68 68 62 69 69 40 70 70 63 71 71 67 72 72 54 73 73 70 74 74 48 75 75 65 76 76 58 77 77 50 78 78 37 79 79 46 80 80 46 81 81 68 82 82 46 83 84 69 84 85 24 85 83 61 86 86 43 87 87 47 88 88 59 89 89 37 90 90 46 91 91 53 92 92 64 93 93 49 94 94 47 95 96 15 96 97 60 97 95 15 98 98 87 99 99 72 100 104 93 101 100 96 102 101 90 103 102 95 104 103 71 105 105 77 106 106 82 107 111 107 108 107 78 109 108 80 110 110 105 111 109 106 112 112 109 113 113 58 114 114 114 115 115 86 116 118 91 117 119 108 118 120 83 119 121 98 120 122 104 121 123 115 122 124 75 123 116 74 124 117 101 125 125 111 126 127 97 127 128 116 128 129 94 129 130 81 130 131 79 131 132 88 132 133 100 133 126 112 134 134 85 135 135 84 136 136 92 137 137 99 138 138 113 139 139 73 140 141 110 141 142 89 142 140 76 143 143 103 144 144 102 \. -- -- TOC entry 3416 (class 0 OID 549260) -- Dependencies: 267 -- Data for Name: email_templates; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.email_templates (id, design, name, subject, "bodyHtml", "bodyText", enabled, tags, created_by, updated_by, created_at, updated_at) FROM stdin; 1 {"body": {"rows": [{"cells": [1], "values": {"_meta": {"htmlID": "u_row_1", "htmlClassNames": "u_row"}, "columns": false, "padding": "0px", "hideable": true, "deletable": true, "draggable": true, "selectable": true, "hideDesktop": false, "duplicatable": true, "backgroundColor": "", "backgroundImage": {"url": "", "cover": false, "center": true, "repeat": false, "fullWidth": true}, "displayCondition": null, "columnsBackgroundColor": ""}, "columns": [{"values": {"_meta": {"htmlID": "u_column_1", "htmlClassNames": "u_column"}, "border": {}, "padding": "0px", "backgroundColor": ""}, "contents": [{"type": "image", "values": {"src": {"url": "https://res.cloudinary.com/wongames/image/upload/v1619314061/won-white_e3ndnl.png", "width": 632, "height": 189, "maxWidth": "74%", "autoWidth": false}, "_meta": {"htmlID": "u_content_image_1", "htmlClassNames": "u_content_image"}, "action": {"name": "web", "attrs": {"href": "{{href}}", "target": "{{target}}"}, "values": {"href": "https://wongames.willianjusten.com.br", "target": "_blank"}}, "altText": "Won Games", "hideable": true, "deletable": true, "draggable": true, "textAlign": "center", "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "50px 11px"}}, {"type": "heading", "values": {"text": "Thanks for buying at Won Games!", "_meta": {"htmlID": "u_content_heading_1", "htmlClassNames": "u_content_heading"}, "color": "#ffffff", "fontSize": "30px", "hideable": true, "deletable": true, "draggable": true, "linkStyle": {"inherit": true, "linkColor": "#0000ee", "linkUnderline": true, "linkHoverColor": "#0000ee", "linkHoverUnderline": true}, "textAlign": "left", "fontFamily": {"url": "https://fonts.googleapis.com/css?family=Open+Sans:400,700", "label": "Open Sans", "value": "'Open Sans',sans-serif", "defaultFont": true}, "lineHeight": "140%", "selectable": true, "headingType": "h1", "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}, {"type": "html", "values": {"html": "

Hi <%= user.username %>, thanks for buying at Won Games!

\\n \\n

Follow the info of your order:

\\n\\n

Card Information

\\n\\n\\n\\n

Total: <%= payment.total %>

\\n\\n", "_meta": {"htmlID": "u_content_html_1", "htmlClassNames": "u_content_html"}, "hideable": true, "deletable": true, "draggable": true, "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}, {"type": "divider", "values": {"_meta": {"htmlID": "u_content_divider_1", "htmlClassNames": "u_content_divider"}, "width": "100%", "border": {"borderTopColor": "#BBBBBB", "borderTopStyle": "solid", "borderTopWidth": "1px"}, "hideable": true, "deletable": true, "draggable": true, "textAlign": "center", "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}, {"type": "html", "values": {"html": "

Games

\\n\\n", "_meta": {"htmlID": "u_content_html_2", "htmlClassNames": "u_content_html"}, "hideable": true, "deletable": true, "draggable": true, "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}, {"type": "divider", "values": {"_meta": {"htmlID": "u_content_divider_2", "htmlClassNames": "u_content_divider"}, "width": "100%", "border": {"borderTopColor": "#BBBBBB", "borderTopStyle": "solid", "borderTopWidth": "1px"}, "hideable": true, "deletable": true, "draggable": true, "textAlign": "center", "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}, {"type": "text", "values": {"text": "

2021 - Won Games

", "_meta": {"htmlID": "u_content_text_1", "htmlClassNames": "u_content_text"}, "color": "#ffffff", "hideable": true, "deletable": true, "draggable": true, "linkStyle": {"inherit": true, "linkColor": "#0000ee", "linkUnderline": true, "linkHoverColor": "#0000ee", "linkHoverUnderline": true}, "textAlign": "left", "lineHeight": "140%", "selectable": true, "hideDesktop": false, "duplicatable": true, "containerPadding": "10px"}}]}]}], "values": {"_meta": {"htmlID": "u_body", "htmlClassNames": "u_body"}, "linkStyle": {"body": true, "inherit": false, "linkColor": "#ee00a6", "linkUnderline": true, "linkHoverColor": "#0000ee", "linkHoverUnderline": true}, "fontFamily": {"url": "https://fonts.googleapis.com/css?family=Open+Sans:400,700", "label": "Open Sans", "value": "'Open Sans',sans-serif", "defaultFont": true}, "contentAlign": "center", "contentWidth": "500px", "preheaderText": "", "backgroundColor": "#0a0d27", "backgroundImage": {"url": "", "cover": false, "center": true, "repeat": false, "fullWidth": true}}}, "counters": {"u_row": 1, "u_column": 1, "u_content_html": 2, "u_content_text": 1, "u_content_image": 1, "u_content_divider": 2, "u_content_heading": 1}, "schemaVersion": 5} Order Template Thanks for buying at Won Games! \n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n Won Games\n \n
\n\n
\n\n\n \n \n \n \n \n
\n \n

\n Thanks for buying at Won Games!\n

\n\n
\n\n\n \n \n \n \n \n
\n \n
\n

Hi <%= user.username %>, thanks for buying at Won Games!

\n \n

Follow the info of your order:

\n\n

Card Information

\n\n
    \n
  • Card brand: <%= payment.card_brand %>
  • \n
  • Card number: **** **** **** <%= payment.card_last4 %>
  • \n
\n\n

Total: <%= payment.total %>

\n\n\n
\n\n
\n\n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n\n \n \n \n \n \n
\n \n
\n

Games

\n\n
    \n <% _.forEach(games, function(game) { %>\n
  • <%= game.name %> - Price: $<%= Number(game.price).toFixed(2) %>
  • \n <% }); %>\n
\n
\n\n
\n\n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n\n \n \n \n \n \n
\n \n
\n

2021 - Won Games

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n t \N \N \N 2021-05-20 11:59:52.309-03 2021-05-20 11:59:52.313-03 \. -- -- TOC entry 3378 (class 0 OID 549030) -- Dependencies: 229 -- Data for Name: games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.games (id, name, slug, short_description, description, price, release_date, rating, publisher, created_by, updated_by, created_at, updated_at) FROM stdin; 8 Mundaun mundaun After learning of his grandfathers mysterious death in a fire, the protagonist travels to Mundaun for the first time since childhood. He will soon discover that \n \n \n \n After learning of his grandfathers mysterious death in a fire, the protagonist travels to Mundaun for the first time since childhood. He will soon discover that something old and diabolical is haunting the remaining inhabitants. The quest to find out the meaning behind these sinister events takes the player on an odyssey up Mundaun mountain: From steep meadows across stony fields and to the snow-covered peak.\n



\nMundaun is a lovingly hand-pencilled horror tale set in a dark, secluded valley of the alps. Explore various areas full of secrets to discover, survive hostile encounters, drive vehicles, fill your inventory and solve a variety of hand-crafted puzzles.\n

Key Features


\n Mundaun © 2021 Hidden Fields. All rights reserved. TM.\nPublished by MWM Interactive.\nThe MWM bowtie logo is a trademark of Madison Wells Media, LLC.\n

28.49 2021-03-15 BR0 24 \N \N 2021-05-20 12:02:56.687-03 2021-05-20 12:02:56.954-03 74 Desperados III Demo desperados-iii-demo Discover new and upcoming games with our Soon to Bloom collection of over 20 playable demos.The full version of Desperados III is available now on GOG.com. You Discover new and upcoming games with our Soon to Bloom collection of over 20 playable demos.





The full version of Desperados III is available now on GOG.com. You can buy it here


\n\nPlay the free Desperados III Demo now and visit Wild West Colorado and Mexico!
\nIn good old Mimimi Games tradition, we proudly offer this demonstration of confidence to you.
\nYou can play two missions from the beginning of the game: First, you learn the ropes as young Cooper on a bounty hunting mission with his father.
\nThen, you’ll unleash grown up Cooper’s full skillset on a large force of bandits and join forces with legendary Doc McCoy to stop a full blown train robbery.
\nWe even offer a short glimpse on the third mission, where giant trapper Hector joins the group in a Western town full of Thugs.

\nExpected Playtime is approximately 90 – 120 minutes (Although the second Mission might be tempting for a speedrun, show us your mission end screen!)

\nAccept our humble invitation to stealthily pile up bad guys behind bushes and get a taste of the story-driven, hardcore tactical stealth gameplay of Desperados III.\n\n \n

\n © 2019 THQ Nordic AB, Sweden. Developed by Mimimi Games. Desperados, THQ and their respective logos are trademarks and/or registered trademarks of THQ Nordic AB. All rights reserved. All other trademarks, logos and copyrights are property of their respective owners.\n

0.00 2020-05-26 BR0 2 \N \N 2021-05-20 12:04:30.449-03 2021-05-20 12:04:30.512-03 83 Bad North: Jotunn Edition - Demo bad-north-jotunn-edition-demo The full version of Bad North: Jotunn Edition is available on GOG.com. You can purchase it here\n\nYour home is under attack. The king is dead at the hands of Vik


The full version of Bad North: Jotunn Edition is available on GOG.com. You can purchase it here

\n\nYour home is under attack. The king is dead at the hands of Viking invaders. Hope is a distant glimmer in the fog, fading fast with every passing moment. As you rise to take your father’s place as ruler, it will fall to you to stage your defenses. But make no mistake – this is no fight for victory, but a desperate grasp for survival.\n

Bad North is a charming but brutal real-time tactics roguelite. Defend your idyllic island kingdom against a horde of Viking invaders, as you lead the desperate exodus of your people. Command your loyal subjects to take full tactical advantage of the unique shape of each island. Everything is at stake: fail, and watch the blood of your subjects stain the ground red.\n

\nIt’s charmingly brutal, with beautiful procedurally-generated islands and adorable soldiers juxtaposed against the blood-stained realities of war. You control the broad strokes of the battle, giving high level commands to your soldiers who try their best to carry them out in the heat of the moment. It’s accessibly deep, with simple player inputs masking a dynamic combat simulation that make it inviting to new players while challenging veterans.\n

\nKeep fighting, warriors. Not for power or riches or glory, but for hope of peace to come once again in the harsh lands of the Bad North.\n

Key Features:


REAL-TIME TACTICS ROGUELITE: Position and relocate your troops to fend off the Vikings, who each have their own counters to the threats you pose. Pick your battles and plan your evacuations carefully! Lose a commander and they’re gone forever; lose everything, and it’s game over! \n


INTELLIGENT UNIT CONTROLS: You command the broad strokes of your defenses and monitor positioning — your soldiers do the rest, navigating and engaging intuitively in response to the situation at hand.\n


PROCEDURALLY-GENERATED ISLANDS: Each island is both stylistically charming and unique in its layout. Plan your strategies around every nook and cranny, for you only get one chance to save them from the enemy invasion.\n


UNLOCKABLE UPGRADES: \nA stronger, smarter defense leads to greater rewards. Use these to develop your subjects from a ragtag militia into seasoned warriors.\n

\n © Copyright 2018 Plausible Concept. Developed by Plausible Concept. Published by Raw Fury AB. All Rights Reserved.\n

0.00 2018-11-15 BR0 53 \N \N 2021-05-20 12:04:30.561-03 2021-05-20 12:04:30.628-03 103 King of Seas king-of-seas “Cannon shots echo on the seven seas as on the horizon the sun rises on a new dawn of pirates. Drop your moorings, unfold the sails and launch yourself into the
“Cannon shots echo on the seven seas as on the horizon the sun rises on a new dawn of pirates. Drop your moorings, unfold the sails and launch yourself into the heart of the storm shaping your empire. The murder of your father will not be forgiven."

King of Seas is an Action Role playing game set in a deadly procedurally generated pirate world. In a ferocious plot you will fight to regain what has been taken away and embark on an epic adventure in a fantastic world, filled with battles, lost islands and treasures. A universe full of amazing characters and breathtaking missions will keep you anchored as you strive to become the king of all pirates.


MAIN FEATURES


ADDITIONAL FEATURES

\n King of Seas © 3DClouds S.r.l, published under licence by TEAM17 Digital Limited\nAll related titles, logos and characters are trademarks and copyright of 3DCLOUDS S.R.L.\nAll rights reserved.\n

59.99 2021-05-24 BR0 63 \N \N 2021-05-20 12:06:18.293-03 2021-05-20 12:06:18.347-03 109 Farlanders farlanders Colonize Mars and help your settlement to survive on the Red Planet! \n\nThe Farlanders is a turn-based strategy game in which you have to build and manage a colo \n \n \n \n Colonize Mars and help your settlement to survive on the Red Planet! \n

\nThe Farlanders is a turn-based strategy game in which you have to build and manage a colony on Mars. Use specialized tools to terraform the planet, build residential areas, create resource producing factories, and don’t forget to have entertainment centers for your citizens. At the end of the day, their happiness is paramount!\n

\nPerfect your skills and optimize the creation of your colony using terraforming tools. Incorrect usage might lead to devastating results. \n

Main Features:


\nPuzzle-like terraforming system \n
\nUse a turn to select one “terraforming kit” to shape the landscape and get it ready for your colony. Place a water drop title in a canyon to create a water source and any flat land around it will become fertile soil. Raise canyons to create flatland so that it can become fertile soil or be built on. Raise mountains so that turbines can be placed near by to create electricity.\n

\nThe only catch is your terraforming kits are preset in various shapes. A kit might have two water drop tiles and one that lower the terrain. This might give you water in one spot and a canyon where you wanted to build. The player must carefully place tiles to mitigate any downsides. \n


\nBuildings\n
\nCreate the habitat for your settlers by placing necessary buildings for their survival, like farms, water pumps, wind turbines, and more. Build factories to supply your colony and have entertainment centers to keep your colony the premiere place to live.\n

\nArtifacts\n
\nCollect and research Artifacts by destroying mountains or melting ice. These little treasures might help you improve your colony if you choose. \n

\nCompete with other players \n
\nCreate the most efficient colony on Mars and show off your score. The leaderboard is updated on a daily basis and you will get a chance to place your name on a top of that list! But can you stay there?\n

\nProcedural map generation\n
\nEach new game will feel completely different with procedural map generation, yet still customizable to meet your desired level of challenge. \n

\nCustomized Maps\n
\nWant a little more control over the maps? Customize the Red planet the way you want. Add more water or remove it completely, add more hills to produce more energy using wind turbines or if you like the solar panels more, decrease the frequency of hills appearing on the map. \n

\nTrading\n
\nTrade with other colonies in order to ensure the success of your mission on Mars.\n\n\n \n 554.99 2021-06-15 BR0 89 \N \N 2021-05-20 12:06:24.156-03 2021-05-20 12:06:24.22-03 1 Cyberpunk 2077 cyberpunk-2077 Cyberpunk 2077 is an open-world, action-adventure story set in Night City, a megalopolis obsessed with power, glamour and body modification. You play as V, a me




Cyberpunk 2077 is an open-world, action-adventure story set in Night City, a megalopolis obsessed with power, glamour and body modification. You play as V, a mercenary outlaw going after a one-of-a-kind implant that is the key to immortality. You can customize your character's cyberware, skillset and playstyle, and explore a vast city where the choices you make shape the story and the world around you. 


Become a cyberpunk, an urban mercenary equipped with cybernetic enhancements and build your legend on the streets of Night City. Create your character from scratch and choose their background out of three unique Lifepaths. Take the role of a gang-wise Street Kid, freedom-loving Nomad, or a ruthless Corpo. 


Enter the massive open world of Night City, a place that sets new standards in terms of visuals, complexity and depth. Explore the bustling megalopolis of the future and its extensive districts, each with exceptional visual flavor, inhabitants and chances to earn cash. Interact with members of powerful gangs who rule the streets of Night City. 


Take the riskiest job of your life and go after a prototype implant that is the key to immortality. Guided by the legendary Rockerboy, Johnny Silverhand (played by Keanu Reeves), you will change the course of the corporate-ruled world forever. All this while listening to an intoxicating soundtrack from artists like Run the Jewels, Refused, Grimes, A$AP Rocky, Gazelle Twin, Ilan Rubin, Richard Devine, Nina Kraviz, Deadly Hunta, Rat Boy, and Tina Guo. 


 

Game features:


 




* Exclusive Digital Comic - Cyberpunk 2077: Big City Dreams is available in English only.

CD PROJEKT®, Cyberpunk®, Cyberpunk 2077® are registered trademarks of CD PROJEKT S.A. © 2019 CD PROJEKT S.A. All rights reserved. All other copyrights and trademarks are the property of their respective owners.

59.99 2020-12-09 BR0 1 \N 1 2021-05-20 12:02:49.275-03 2021-05-20 13:00:46.021-03 3 Baldur's Gate 3 baldurs-gate-iii This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game.\nGather your party, and return t

\nGather your party, and return to the Forgotten Realms in a tale of fellowship and betrayal, sacrifice and survival, and the lure of absolute power. \n

\nMysterious abilities are awakening inside you, drawn from a Mind Flayer parasite planted in your brain. Resist, and turn darkness against itself. Or embrace corruption, and become ultimate evil. \n

\nFrom the creators of Divinity: Original Sin 2 comes a next-generation RPG, set in the world of Dungeons and Dragons. \n\n


\n\n\nChoose from a wide selection of D&D races and classes, or play as an origin character with a hand-crafted background. Adventure, loot, battle and romance as you journey through the Forgotten Realms and beyond. Play alone, and select your companions carefully, or as a party of up to four in multiplayer. \n



\nAbducted, infected, lost. You are turning into a monster, but as the corruption inside you grows, so does your power. That power may help you to survive, but there will be a price to pay, and more than any ability, the bonds of trust that you build within your party could be your greatest strength. Caught in a conflict between devils, deities, and sinister otherworldly forces, you will determine the fate of the Forgotten Realms together.\n\n


\nForged with the new Divinity 4.0 engine, Baldur’s Gate 3 gives you unprecedented freedom to explore, experiment, and interact with a world that reacts to your choices. A grand, cinematic narrative brings you closer to your characters than ever before, as you venture through our biggest world yet. \n



\nThe Forgotten Realms are a vast, detailed and diverse world, and there are secrets to be discovered all around you -- verticality is a vital part of exploration. Sneak, dip, shove, climb, and jump as you journey from the depths of the Underdark to the glittering rooftops of the Upper City. How you survive, and the mark you leave on the world, is up to you.\n











\n © 2020 WIZARDS OF THE COAST. ALL RIGHTS RESERVED. WIZARDS OF THE COAST, BALDUR’S GATE, DUNGEONS & DRAGONS, D&D, AND THEIR RESPECTIVE LOGOS\nARE REGISTERED TRADEMARKS OF WIZARDS OF THE COAST LLC\n© 2020 LARIAN STUDIOS. ALL RIGHTS RESERVED. LARIAN STUDIOS IS A REGISTERED TRADEMARK OF ARRAKIS NV, AFFILIATE OF LARIAN STUDIOS GAMES LTD.\nALL COMPANY NAMES, BRAND NAMES, TRADEMARKS AND LOGOS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS.\n

199.99 2020-10-05 BR0 5 \N \N 2021-05-20 12:02:49.28-03 2021-05-20 12:02:49.313-03 5 Fallout 3: Game of the Year Edition fallout-3-game-of-the-year-edition When you buy this game, The Elder Scrolls: Arena and The Elder Scrolls Chapter II: Daggerfall will be added to your GOG.com account for free!Prepare for the Fut When you buy this game, The Elder Scrolls: Arena and The Elder Scrolls Chapter II: Daggerfall will be added to your GOG.com account for free!

Prepare for the Future™
\nWith Fallout 3: Game of the Year Edition, experience the most acclaimed game of 2008 like never before. Create a character of your choosing and descend into an awe-inspiring, post-apocalyptic world where every minute is a fight for survival. Fallout 3: Game of the Year Edition includes all five of the Fallout 3 Game Add-on Packs:


Main Features:

\n Fallout® 3: Game of the Year Edition © 2009 Bethesda Softworks LLC, a ZeniMax Media company. Bethesda Softworks, Bethesda Game Studios, ZeniMax and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the U.S. and/or other countries. Fallout, Prepare for the Future and related logos are trademarks or registered trademarks of Bethesda Softworks LLC in the U.S. and/or other countries. All rights reserved.\n

39.99 2009-10-12 BR0 13 \N \N 2021-05-20 12:02:56.687-03 2021-05-20 12:02:56.953-03 15 Dawn of Man dawn-of-man Take control of a settlement of the first modern humans, guide them through the ages in their struggle for survival.\nDawn of Man is a survival/city-builder from \n \n \n \n Take control of a settlement of the first modern humans, guide them through the ages in their struggle for survival.\n

Dawn of Man is a survival/city-builder from the creators of Planetbase.\n

\nThe game starts in the Stone Age, and takes you up to the Iron Age, spanning more than 10,000 years of human prehistory.\n

\nYou will have to get your people to survive, expand and evolve, just like our ancestors, facing the challenges that the environment will throw at you.\n

Hunt

Animals were a vital source of food and resources for ancient humans. Use their meat to feed your people and their skin and bones to make clothing and craft the tools you will need to stay alive. \n
\nConfront Mammoths, Woolly Rhinos, Ancient Bison, Megaloceros, Cave Lions and other species that roamed the earth at the time.

Gather

Collect a variety resources from the environment: fruit, berries, water, wood, flint, stone, ores. Use them to prepare food, to make tools and to build structures in your settlement.

Plan for harsh times

Fish is more abundant in spring, berries and fruit can be collected in summer and animals are easier to come by when it's warm. \n
\nWhen winter comes, make sure to have enough non-perishable food and warm clothing in order to survive.

Expand and fortify your settlement

Build more homes and facilities for your people, in order to expand your population. \n
\nConstruct fortifications and craft weapons, so you are ready for when the inevitable conflict comes.

Research Technologies

Each new discovery will make it easier for your settlement to be able to support larger populations, but will also bring new challenges: increased food demand, morale issues and more frequent raider attacks.

Build Megalithic Structures

Our ancestors were capable of incredible engineering feats: mine massive rocks from the environment, transport them using sledges and construct colossal stone structures.

Control Nature

Unlock farming technologies to grow your own vegetables, so you can feed large amounts of people. Domesticate animals to produce food, resources and provide increased muscle power.\n


33.19 2019-02-28 BR0 27 \N \N 2021-05-20 12:02:57.011-03 2021-05-20 12:02:57.074-03 26 METAL GEAR SOLID metal-gear-solid You are Snake, a government agent on a mission to regain control of a secret nuclear weapons base from terrorist hands.\n\nNow the international best-selling Play \n \n \n \n You are Snake, a government agent on a mission to regain control of a secret nuclear weapons base from terrorist hands.\n

\nNow the international best-selling PlayStation game comes to the PC with better graphics, added features, and new gameplay modes! Unlike anything you've played before, Metal Gear Solid introduces a new genre of gaming where ninja-like stealth and cool head are your best weapons for survival\n

\n © Konami Digital Entertainment\n

49.89 2000-09-24 BR0 19 \N \N 2021-05-20 12:02:57.131-03 2021-05-20 12:02:57.197-03 36 BloodRayne Complete Bundle bloodrayne-complete-bundle Enjoy all the BloodRayne games! This bundle includes BloodRayne: Terminal Cut, BloodRayne 2: Terminal Cut and BloodRayne: Betrayal. Terminal Cut editions of Blo \n \n \n \n Enjoy all the BloodRayne games! This bundle includes BloodRayne: Terminal Cut, BloodRayne 2: Terminal Cut and BloodRayne: Betrayal. Terminal Cut editions of BloodRayne 1 & 2 have been enhanced by the original developer, Terminal Reality and include many enhancements over the originals:\n
BloodRayne: Terminal Cut with Ultimate Update
\nIn the years between the World Wars, Agent BloodRayne works as a killing machine for The Brimstone Society – a top secret fraternity that hunts down and destroys supernatural threats. Two missions, five years apart, turn out to be connected by one man. In this frenetic and bloody third-person shooter that unleashed the iconic red-headed femme fatale on the world, the dhampir Rayne faces horrific creatures, hordes of soldiers with an array of tools and firepower, and every Nazi officer that stands between her and the one she must stop.

\n\nThe game now includes Ultimate Update patch with many updates that fans have been asking for such as mutants with their proper flesh color!

\nUltimate Update features:\n
BloodRayne 2: Terminal Cut with Ultimate Update
\nBloodRayne is a dhampir, born from the unnatural union of vampire and human. Blessed with the powers of a vampire but cursed with the unquenchable thirst for blood and a weakness to sunlight, Rayne is challenged with her most personal battle yet as she hunts down her siblings. With new acrobatic movements and rail sliding, fast-paced blade and gun combat, fatal finishing moves, more dhampir powers like time control, and an extensive combo system, BloodRayne 2 is a brutally satisfying continuation of the iconic series.

\nThe game now includes Ultimate Update. In addition to language and sound improvements, this patch introduces a rebalanced boss fight with Ephemera in the Twisted Garden to better match the experience players remember from the console version.

\nUltimate Update features:\n
BloodRayne: Betrayal
\nRayne has returned to battle and feed in a brand new hack ‘n slash adventure. Slay ghastly enemies as the sexy dhampir with superhuman strength, speed, and agility, recruited by the vampire hunting Brimstone Society for one last mission. The target is a lavish, yet sinister ball in a secluded castle with plenty of dark and gruesome surprises. With the help of a mysterious friend and members of Brimstone, Rayne must infiltrate the manor, take out the fiendish horde, and stop an evil master plot once and for all.\n\n \n

\n 2020 © Ziggurat Interactive, Inc.\n

62.39 2020-11-26 BR0 7 \N \N 2021-05-20 12:02:57.26-03 2021-05-20 12:02:57.336-03 45 Risk of Rain risk-of-rain Risk of Rain is an action platformer with roguelike elements. With permanent death as a primary feature, players will have to play their best to get as far as p \n \n \n \n Risk of Rain is an action platformer with roguelike elements. With permanent death as a primary feature, players will have to play their best to get as far as possible. Fight on a mysterious planet with randomly spawning enemies and bosses, either alone or with 3 friends in online co-op. With over 100 items at your disposal, you will find the tools you need to find the teleporter back home. Discover a myriad of randomly chosen stages, from the desolate forest to the frozen tundra.\n\n 4.99 2013-11-07 BR0 31 \N \N 2021-05-20 12:02:57.39-03 2021-05-20 12:02:57.439-03 104 Black Skylands black-skylands Black Skylands Demo is available here\n\n\n\nPrepare to set sail...through the skies! Black Skylands is the first video game in the skypunk genre that combines elem
Black Skylands Demo is available here

\n\n\n\nPrepare to set sail...through the skies! Black Skylands is the first video game in the skypunk genre that combines elements of Open World, Sandbox, Top-Down Shooter and Action/Adventure.

FEATURES

Join us on Discord!


554.99 1969-12-31 BR0 81 \N \N 2021-05-20 12:06:18.293-03 2021-05-20 12:06:18.345-03 111 Potion Craft: Alchemist Simulator potion-craft-alchemist-simulator Potion Craft is an alchemist simulator where you physically interact with your tools and ingredients to brew potions. You're in full control of the whole shop: \n \n \n \n Potion Craft is an alchemist simulator where you physically interact with your tools and ingredients to brew potions. You're in full control of the whole shop: invent new recipes, attract customers and experiment to your heart's content. Just remember: the whole town is counting on you\n


Join our Discord:


Features:

Work with all sorts of ingredients

Leaves, flowers, berries, roots, fruits, minerals, and a plethora of mushrooms are at the ready for your mortar and pestle. Just like espresso, the fineness of the grind matters!\n


Learn the art of potion making

Concoct your potion plan. Grind ingredients and carefully mix them in your cauldron. Heat the coals. Boil and stir. Add the base: water, oil, or… something else. Congrats on your first potion! Was it easy to learn? Now try mastering it!\n


Experiment and invent new recipes

Carefully plan your route via the Alchemy Map to combine different effects. Be mindful of common sense: you won’t find a market for a poisonous healing potion… right? Or would you?\n


Sell potions

Every day customers will come to your store looking for solutions to their problems. You will face consequences depending on what you decide to sell them. Attract guilds, befriend notable figures (or feud with them), gain riches and influence - and one day, you may even decide the fate of the whole town.\n


Buy ingredients or grow your own

Every alchemist needs ingredients. You can buy them from traveling merchants: it can be pricey, but successful haggling may save you some coin. Or you can just grow your own!\n


Get creative with customizing

Want to give a special appearance to your best potions? Go ahead! Change bottle shape, label type, icon, and colors. You can even give it a custom name and label description. Carefully arrange your unique potions to showcase them on your shop’s shelves and tables… or carelessly throw them around - we’re not gonna tell you what to do, just have fun!\n


554.99 1969-12-31 BR0 81 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.218-03 117 Curved Space curved-space Curved Space Demo is available here.\nCurved Space is an intense arcade-style twin-stick shooter that takes the classic formula and plunges it into the weirdest


Curved Space Demo is available here.




\nCurved Space is an intense arcade-style twin-stick shooter that takes the classic formula and plunges it into the weirdest reaches of space. Battle cosmic space-invading spiders across curved landscapes where bullets hug the terrain while the horizon drops sharply out of sight.\n

\nInspired by arcade classics, players will have to hunt for weapon power-ups and upgrades while dodging enemy fire, blasting interdimensional bugs, and wrangling some enormous boss monsters. Simple to learn as you fight your way through the branching story-driven campaign, but tough to master as you chase the glory of the leaderboards.\n









\n © 2021 Only By Midnight Ltd. All rights reserved. Produced with the support of the Edmonton Screen Media Fund. Published by Maximum Games™. Maximum Games™ and the Maximum Games™ logo are trademarks of Maximum Games, Inc. All rights reserved. All other trademarks or registered trademarks belong to their respective owners.\n

554.99 2021-06-28 BR0 85 \N \N 2021-05-20 12:06:24.272-03 2021-05-20 12:06:24.33-03 4 The Witcher 3: Wild Hunt - Game of the Year Edition the-witcher-3-wild-hunt-game-of-the-year-edition This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n Play the most polished and complete version of the most awarded game of 2015 - The Witcher 3: Wild Hunt – Game of the Year Edition. Now available with all expansions and additional content.

\nBecome a professional monster slayer and embark on an adventure of epic proportions!\nUpon its release, The Witcher 3: Wild Hunt became an instant classic, claiming over 250 Game of the Year awards. Now you can enjoy this huge, over 100-hour long, open-world adventure along with both its story-driven expansions worth an extra 50 hours of gameplay. This edition includes all additional content - new weapons, armor, companion outfits, new game mode and side quests.\n



Features:

Play as a Highly Trained Monster Slayer for Hire
\nTrained from early childhood and mutated to have superhuman skills, strength, and reflexes, witchers are a socially ostracized counterbalance to the monster-infested world in which they live.
\n- Gruesomely destroy foes as a professional monster hunter armed with a range of upgradeable weapons, mutating potions, and combat magic.
\n- Hunt down a wide variety of exotic monsters, from savage beasts prowling mountain passes to cunning supernatural predators lurking in the shadowy back alleys of densely populated cities.
\n- Invest your rewards to upgrade your weaponry and buy custom armor, or spend them on horse races, card games, fist fighting and other pleasures life brings.\n

Track Down the Child of Prophecy in a Morally Ambiguous Fantasy Open World
\n- Built for endless adventure, the massive open world of The Witcher sets new standards in terms of size, depth and complexity.
\n- Traverse a fantastical open world: explore forgotten ruins, caves and shipwrecks, trade with merchants and dwarven smiths in cities, and hunt across open plains, amidst mountains and at sea.
\n- In a time of war, track down the child of prophecy, a living weapon of great power whose coming was foretold in ancient elven legends.
\nMake choices that go beyond good and evil and face their far-reaching consequences.\n

Game of the Year Edition
\nThe Witcher 3: Wild Hunt Game of the Year Edition brings together the base game and all the additional content released to date.
\n- Includes the Hearts of Stone and Blood & Wine expansions, which offer a massive 50 hours of additional storytelling as well as new features and new areas that expand the explorable world by over a third!
\n- Affords access to all additional content released so far, including weapons, armor, side quests, game modes and new GWENT cards!
\n- Features all technical and visual updates as well as a new user interface completely redesigned on the basis of feedback from members of the Witcher Community.\n\n \n

\n The Witcher 3: Wild Hunt © 2016 CD Projekt S.A. All Rights Reserved.\n

20.00 2016-08-29 BR0 1 \N \N 2021-05-20 12:02:49.281-03 2021-05-20 12:02:49.311-03 7 Neverwinter Nights 2 Complete neverwinter-nights-2-complete Welcome back to Neverwinter!\n\nBards sing tales of heroes in ages past, but they rarely mention those that are yet to become heroes. One such hero is a farmer in \n \n \n \n Welcome back to Neverwinter!\n

\nBards sing tales of heroes in ages past, but they rarely mention those that are yet to become heroes. One such hero is a farmer in the small village of West Harbor. Raised by the elven ranger, Daeghun, as his own child, our hero will embark on a grandiose quest against the King of Shadows. Neverwinter Nights 2 is the tale of his deeds. His adventures continue in Neverwinter Nights 2: Mask of the Betrayer. Our protagonist discovers that an ominous spell has fallen on him. A curse of perpetual hunger--one which can only be quelled by consuming the souls of spirits. In order to remove the curse, he has to travel to the Shadow Realm, which harbors dark secrets and tormented souls.\n

\nNeverwinter Nights 2: Storm of Zehir gives as a breather from grand quests of destiny and epic ordeals. You simply assemble a group of four adventurers (either by carefully picking out each of their statistics and skills or by randomly re-rolling your characters until you find the ones that suit you) and go where the wind takes you. Just make sure to get a good look at the map as you will need it to explore the wide open region of Samarach and the Sword Coast. Then, yet another adventure: in an ancient and forgotten tomb you found an unusual mask. It made you quite powerful but changed your life into a living nightmare. Strange, terrifying visions torment your psyche. Every time you try to get rid of the accursed mask, it secretly makes its way back to you. There's just one solution: set sail for Westgate and discover the secret of the Night Masks in Neverwinter Nights 2: Mysteries of Westgate.\n

\nNeverwinter Nights 2: Complete is an epic RPG set in the fantasy world of the Forgotten Realms, one of the most popular campaign settings of Dungeons & Dragons. Use all the wicked spells, feats, and prestige classes from the D&D 3.5 rules. Create your characters any way you wish, choosing from a wide variety of races and subraces, such as Tiefling and Aasimar. As if the pre-made campaigns weren't enough, you can take the reins and use the powerful Obsidian Neverwinter NIghts 2 Toolset to make your own adventures and share them with friends!\n

\nIf you're looking for a truly epic experience, you can't go wrong with our Mod Spotlight for Neverwinter Nights 2 Complete!

\n © 2013 Wizards. Neverwinter Nights, Dungeons & Dragons, Forgotten Realms, Mask of the Betrayer, Storm of Zehir, and Mysteries of Westgate are trademarks of Wizards of the Coast LLC in the USA and other countries. \n

36.99 2006-10-30 BR0 15 \N \N 2021-05-20 12:02:56.687-03 2021-05-20 12:02:56.953-03 17 Fates of Ort fates-of-ort Fates of Ort is a retro inspired fantasy RPG with a focus on strategic action and a story driven by your decisions. It is a tale of sacrifice and difficult choi Fates of Ort is a retro inspired fantasy RPG with a focus on strategic action and a story driven by your decisions. It is a tale of sacrifice and difficult choices, in a world under threat of annihilation by the avaricious force of Consumption magic.\n



\nMagic is powerful, but it is not free. Every spell you cast requires a little bit of your life energy to spark it. Cast enough spells and you will extinguish your very soul. This means you need to be strategic when fighting, balancing the cost of magic with the risk of taking damage from your enemies.\n



\nHow each spell manifests in the world depends on what divine power you choose to combine it with. For example, the Evoke Force spell will cause the ground to erupt with a series of sharp ice crystals, summon a thunderous lightning strike, or barrage the ground with a meteor shower – all depending on what the spell is combined with.\n



\nUse the magic spells at your disposal to defeat the demons spilling out from the underworld. In Ort, time is frozen whenever you stand still. This means you have the opportunity to plan your attacks and be strategic.\n





\nLike any RPG, you will be slaying enemies to collect loot and experience. The items you pick up will improve your magical abilities, though some come with curses... As you level up, you will learn additional magic spells to use against your enemies.\n





\nOrt is varied and expansive, an open world for you to explore. Choose the order of the quests you pursue, or just explore to meet new characters. The final battle is available whenever you choose, but... Are you strong enough?\n





\nPlay as a novice mage, forced to take on the responsibility of saving the world and those that are important to you. Quests can be completed to gain access to new areas, save and unlock allies, gain items and powers, and more. Replays are encouraged because small decisions can have permanent and significant consequences, leading to different game outcomes. \n






Games that inspired Fates of Ort

Diablo 2, Morrowind, Chrono Trigger, Fallout, Eschalon Book 20.29 2020-03-30 BR0 20 \N \N 2021-05-20 12:02:57.011-03 2021-05-20 12:02:57.077-03 31 Blazing Chrome blazing-chrome In Blazing Chrome, machines rule the world and the few humans left are on the edge of total extermination, lacking power, prestige or status among their metal a \n \n \n \n In Blazing Chrome, machines rule the world and the few humans left are on the edge of total extermination, lacking power, prestige or status among their metal and circuits overlords. Bring your best pal and kick some metal butts to free the humankind while enjoying a classic run’n’gun, fully loaded with action and exciting fights! \n

\nDash through 5 apocalyptic environments with hundred of robots-enemies to blow to pieces. Blast your way through the enemy lines and and try to defeat a bunch of mechanical bosses with using hoverbikes, huge armors and a whole arsenal of kick-ass weapons. \n

\nBlazing Chrome offers a lot of features in the legacy of classic run’n’gun:\n\n\n

\n ©The Arcade Crew - Joymasher - 2019, all rights reserved.\n

13.19 2019-07-10 BR0 32 \N \N 2021-05-20 12:02:57.136-03 2021-05-20 12:02:57.199-03 39 Spiritfarer Lily Update spiritfarer Spiritfarer Demo is available hereThe Lily Update is a small yet important addition to Spiritfarer’s main game. This free update introduces the new character of


Spiritfarer Demo is available here




The Lily Update is a small yet important addition to Spiritfarer’s main game. This free update introduces the new character of Lily the Butterfly Spirit to guide the player through several scenes which add depth and detail to the main character Stella’s story. Additionally, the update brings improvements to the local co-op play and various bug fixes.\n

What will you leave behind?

Spiritfarer is a cozy management game about dying. You play Stella, ferrymaster to the deceased, a Spiritfarer. Build a boat to explore the world, then befriend and care for spirits before finally releasing them into the afterlife. Farm, mine, fish, harvest, cook, and craft your way across mystical seas. Join the adventure as Daffodil the cat, in two-player cooperative play. Spend relaxing quality time with your spirit passengers, create lasting memories, and, ultimately, learn how to say goodbye to your cherished friends. What will you leave behind?\n

Features:


\n ©2019 Thunder Lotus. All Rights Reserved. Spiritfarer and Thunder Lotus are trademarks of Thunder Lotus in the U.S. and in other countries.\n

43.49 2020-08-17 BR0 18 \N \N 2021-05-20 12:02:57.266-03 2021-05-20 12:02:57.344-03 9 HUNTDOWN huntdown CRIME DOESN'T PAY... UNLESS YOU'RE A BOUNTY HUNTER\nIn the mayhem-filled streets of the future where criminal gangs rule and cops fear to tread, only the bounty CRIME DOESN'T PAY... UNLESS YOU'RE A BOUNTY HUNTER
\nIn the mayhem-filled streets of the future where criminal gangs rule and cops fear to tread, only the bounty hunters can free the city from the corrupt fist of felony. Lay waste to the criminal underworld and make a killing in this hard boiled action comedy arcade shooter.

NEW ACTION-PACKED ARCADE MODE
\nIt’s you versus the world as you’re pitted against players from all corners of the globe in a brutal battle to pummel your way up the leaderboards. Innovate and invent new ways to pulverize your foes to rack up your score, whether you make use of combo-kills, quickdraw weapon-swap bonuses, or just hurl criminals off the rooftops. In this nail-biting race against the clock, collect as many bounties as you can while you watch the numbers roll and strive to be the apex bounty hunter.

PLAY AS THREE LEGENDARY BOUNTY HUNTERS OLD SCHOOL MODERNIZED
\nHand painted 16-bit pixel art graphics and hand-drawn animations combined with fluid 60-FPS gameplay and an epic synthesized soundtrack

20 LEVELS
\nGritty, neon soaked, graffiti strewn 80s cityscapes to clear, each with their own infamous gang boss to terminate and bounty to collect.

FOUR UNIQUE GANGS TO DISMANTLECHOOSE YOUR WEAPON
\nConfiscate machine guns, laser weapons, katanas, grenades and more, and turn them on their owners. Stab, shoot and explode your way through swathes of gangs and bosses and collect your bounty.
\n \n\n \n

\n © Easy Trigger Games 2016-2021\n

37.99 2021-05-11 BR0 14 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.96-03 23 The Witcher Adventure Game witcher-adventure-game The Witcher Adventure Game is a digital adaptation of CD PROJEKT RED’s board game set in the brutal, dark fantasy universe of monster slayer Geralt of Rivia. Em \n \n \n \n \nThe Witcher Adventure Game is a digital adaptation of CD PROJEKT RED’s board game set in the brutal, dark fantasy universe of monster slayer Geralt of Rivia. Embark on a journey across the beautifully rendered world of The Witcher and complete a variety of quests: hunt for deadly beasts, solve ancient mysteries, and take part in complex political intrigues. Make choices and face their brutal consequences in a world begging to be explored!\n

\nThe Witcher Adventure Game allows players to take the role of four distinct characters known from the books and video games: Geralt of Rivia, monster slayer; Triss Merigold, cunning sorceress; Yarpen Zigrin, dwarven warrior; and Dandelion, roguish bard. Each character has unique skills and multiple ways of overcoming obstacles - the choice is yours: do you fight your way to victory, call on your charm or try your hand at diplomacy?\n

\nExplore a land of mystery and spin your own, unique tale each time you play. The Witcher Adventure Game is based on the rich universe created by internationally renowned novelist Andrzej Sapkowski. Whether you’re a long time fan or this is your first contact with the universe, The Witcher Adventure Game will pull you in with its deep backstory and high replayability.\n\n

\n The Witcher® is a trademark of CD PROJEKT S. A. The Witcher game © CD PROJEKT S. A. All rights reserved. The Witcher game is based on a novel of Andrzej Sapkowski. All other copyrights and trademarks are the property of their respective owners.\n

2.99 2014-11-26 BR0 1 \N \N 2021-05-20 12:02:57.021-03 2021-05-20 12:02:57.079-03 33 The Witcher 3: Wild Hunt - Expansion Pass the-witcher-3-wild-hunt-expansion-pass The Expansion Pass secures your access to two epic adventures set in the vibrant world of monster hunter Geralt of Rivia.\nThe Witcher 3: Wild Hunt - Hearts of S \n \n \n \n \nThe Expansion Pass secures your access to two epic adventures set in the vibrant world of monster hunter Geralt of Rivia.\n

The Witcher 3: Wild Hunt - Hearts of Stone takes Geralt on an all-new 10-hour adventure into the wilds of No Man’s Land and the nooks and alleys of Oxenfurt, where he’ll try to complete a contract from the mysterious Man of Glass. Caught in a thick tangle of deceit, Geralt will need all his cunning and strength to solve the mystery and emerge unscathed.\n

The Witcher 3: Wild Hunt - Blood and Wine a 30-hour tale that will introduce the all-new in-game region of Toussaint, will take Geralt to a land untainted by war, where an atmosphere of carefree indulgence and knightly ritual masks an ancient, bloody secret.\n

\nThe upcoming expansions will offer gamers new content, gear and foes, and will feature characters both new and dearly missed -- all crafted with maximum attention to detail and quality.\n

\nThe boxed PC version of the game is compatible only with the Expansion Pass sold on GOG.com\n

\n The Witcher 3: Wild Hunt © 2015 CD Projekt S.A. All Rights Reserved.\n

19.49 2016-05-30 BR0 1 \N \N 2021-05-20 12:02:57.139-03 2021-05-20 12:02:57.201-03 42 Katana ZERO katana-zero Katana ZERO is a stylish neo-noir, action-platformer featuring breakneck action and instant-death combat. Slash, dash, and manipulate time to unravel your past Katana ZERO is a stylish neo-noir, action-platformer featuring breakneck action and instant-death combat. Slash, dash, and manipulate time to unravel your past in a beautifully brutal acrobatic display.\n

Exceptional Combat: Overcome your opposition however the situation requires. Deflect gunfire back at foes, dodge oncoming attacks, and manipulate enemies and environments with traps and explosives. Leave no survivors.\n

Hand-Crafted Sequences: Each level is uniquely designed for countless methods of completion. Defeat foes creatively, using spontaneous approaches to eliminate your enemy as you see fit.\n

Unconventional Storytelling: An enigmatic story told through cinematic sequences woven into the gameplay, twisting and folding to an unexpected conclusion.\n\n\n \n

\n Copyright 2019 Askiisoft. All Rights Reserved.\n

17.39 2019-04-17 BR0 26 \N \N 2021-05-20 12:02:57.277-03 2021-05-20 12:02:57.345-03 88 Higurashi When They Cry Hou - Ch.1 Onikakushi higurashi-when-they-cry-hou-ch1-onikakushi The 58th year of Shouwa, early summer\nIt’s June, and the summer heat has arrived earlier than it does most years.\nBy day there are crickets, and by night there \n \n \n \n The 58th year of Shouwa, early summer
\nIt’s June, and the summer heat has arrived earlier than it does most years.
\nBy day there are crickets, and by night there are cicadas.

\nWe’re in Hinamizawa, a small village in the countryside.
\nThere are fewer than two thousand people here. But every year, there is an event.


\nThis event is a mysterious death.
\n(The series has run from 1979 to 1983)

\nOn a certain day in June, someone dies, and someone else goes missing.
\nThe series of deaths is connected to the upheaval surrounding the dam construction project.
\nA murder case that was covered up is being reenacted.
\nIs it a conspiracy? A coincidence? Or perhaps a curse?

\nSomeone who was supposed to be there isn’t.
\nSomeone who wasn’t supposed to be there is.

\nSomeone who was alive last night is dead now.
\nAnd someone who is here right now isn’t alive.

\nSo, there is no way to avert tragedy. There is no choice but to give up.
But don’t give up.

\nOnly you can stand up to this.
\nTHE GAME THAT INSPIRED THE MEGA-HIT ANIME SERIES RETURNS WITH BRAND NEW CHARACTER ART! \n\n

\n (c) 07th Expansion / MangaGamer\n

0.00 2015-05-15 BR0 52 \N \N 2021-05-20 12:04:30.569-03 2021-05-20 12:04:30.636-03 10 The Mansion the-mansion This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game.\nWhat's hiding in Alvin's past?
\nWhat's hiding in Alvin's past? What secrets will you discover traversing The Mansion? ...\n



\nThe Mansion, a grim yet fascinating building you’re facing, doesn’t exist. Maybe it once existed, but when? And was it just like this? Maybe it simply resembles the existing one or maybe it was only assembled from scraps of memories, both real and those created in books, films, or on old postcards?\n

\nThe construction in front of us, although looking robust, seems to have been built from the nightmarish memories of a tormented boy. And it stands in the very center of his nightmare.\n

\nOne rainy day, cold as old bones that no duvet can warm up anymore, there was a faint knocking on the door to your small-town doctor’s office. It was a stranger, a thin young boy with a face prematurely aged by suffering, who was knocking with his last strength. He fell motionless in front of you, mumbling something unintelligible. You carried him to the couch, covered him with a blanket, and bent down to examine him. Then you looked into his eyes that were like bottomless wells and felt that you were falling down straight into his dream.\n

\nNow you’re standing in front of The Mansion and you know you’re not leaving until you face the fears and painful memories of this boy. And the monsters from his dreams seem weirdly real to you – perfectly capable of doing you real harm.\n

\nWelcome to our nightmare!\n



12.99 1969-12-31 BR0 23 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.955-03 19 Vampire: The Masquerade - Shadows of New York - Deluxe Edition vampire-the-masquerade-shadows-of-new-york-deluxe-edition The Vampire: The Masquerade - Shadows of New York Deluxe Edition is a set, which consists of Vampire: The Masquerade - Shadows of New York base game (a stand-al \n \n \n \n The Vampire: The Masquerade - Shadows of New York Deluxe Edition is a set, which consists of Vampire: The Masquerade - Shadows of New York base game (a stand-alone expansion and a companion piece to our previous title, Coteries of New York), an official Soundtrack, composed by Resina, as well as an official, 70-page long Artbook that additionally comes with themed wallpapers (including desktop and mobile, together with a few animated ones).\n

Official Vampire: The Masquerade - Shadows of New York Soundtrack


\n\nLet the shadows embrace you and guide you into the world of Vampire: The Masquerade 5th Edition through this high-quality Original Soundtrack available in MP3 and FLAC formats.\n

\nComposed by Polish cellist Resina (aka Karolina Rec), signed to FatCat's pioneering 130701 imprint, with her debut album released in September 2016, she has steadily been making a name for herself through her striking, emotionally-resonant recordings and her powerful live performances. Her work for Shadows of New York represents a fresh new take on the World of Darkness, that remains true to its atmosphere and mood.\nThe 42 minutes and 30 seconds of Resina’s rich, emotional soundtrack consists of 15 tracks.\n

Vampire: The Masquerade - Shadows of New York Artbook


\nThis high quality, official Vampire: The Masquerade - Shadows of New York artbook consists of 72 pages full of concept arts from different stages of the game's development, final pieces of art included in the game, as well as quotes from the game's lead designer and artists engaged in creating stunning visuals - characters, backgrounds, animations - everything that makes Shadows of New York a truly atmospheric, fully licensed part of the globally renown Vampire: The Masquerade 5th Edition universe. Additionally this artbook will contain link to several Vampire: The Masquerade - Shadows of New York themed wallpapers (including desktop and mobile wallpapers and even some animated ones).\n

About Vampire: The Masquerade – Shadows of New York


Vampire: The Masquerade – Shadows of New York is a visual novel set in the rich universe of Vampire: The Masquerade. It acts as a stand-alone expansion and a companion piece to our previous title, Coteries of New York. While Coteries was a general introduction to the world depicted in the 5th Edition of the hit tabletop role-playing game, Shadows presents a more personal and unique tale from the perspective of our Clan Lasombra protagonist, Julia.\n\n\n \n

\n (c) Paradox Interactive, Vampire: The Masquerade - Shadows of New York® Copyright© [2020] Paradox Interactive AB (publ) All rights reserved.\n(c) 2020 by Draw Distance S.A. All rights reserved. Trademark: Draw Distance is the property of Draw Distance S.A. copyright notice.\n

37.99 2020-09-09 BR0 21 \N \N 2021-05-20 12:02:57.014-03 2021-05-20 12:02:57.079-03 32 HuniePop 2: Double Date huniepop-2-double-date Take a trip to an exotic island paradise for a steamy new adventure in this long awaited sequel to the popular dating sim / puzzle game hybrid, HuniePop!\n\nStory \n \n \n \n Take a trip to an exotic island paradise for a steamy new adventure in this long awaited sequel to the popular dating sim / puzzle game hybrid, HuniePop!\n\n

Story Summary

\n\nAn era of darkness and destruction draws near as an ancient evil of limitless lechery, the Nymphojinn, will soon be awoken by a cosmic super-period of unspeakable PMS. Reunite with Kyu, your old love fairy sidekick, and travel to the island of Inna De Poona to develop your double dating prowess and overcome the insatiable lust of the demonic pair.\n\n

Feature List



Please note that this is a censored version of the game.

\n ©2021 HuniePot Inc.\n

37.99 2021-02-07 BR0 25 \N \N 2021-05-20 12:02:57.139-03 2021-05-20 12:02:57.205-03 43 Siege Survival: Gloria Victis siege-survival-gloria-victis Siege Survival: Gloria Victis Prologue is available hereTHESE WALLS CAN’T FALL\nSet in the medieval world of Gloria Victis, Siege Survival: Gloria Victis sees yo


Siege Survival: Gloria Victis Prologue is available here


THESE WALLS CAN’T FALL

\nSet in the medieval world of Gloria Victis, Siege Survival: Gloria Victis sees your country invaded and your city under brutal siege.\n

\nA small group of civilians are trapped in the only remaining stronghold and are the last source of hope for the defending troops hanging on for dear life. You might not be fighting the invaders yourself, but the fate of the city lies in your hands. \n

\nSupport the last soldiers standing against overwhelming enemy forces and hold out until reinforcements arrive. Build your camp, manage resources, craft supplies during the day and scour the fallen city for resources and new civilian recruits at night.

SURVIVE THE SIEGE

Defending what’s left of your city are a few tired troops in dire need of arrows, weapons and armour; along with treatment for the wounded. You need to keep this last bastion of defenders supplied and supported in every way possible ahead of their battles every few days; otherwise, the enemy will eventually storm the keep. Not only that, but you also need to protect your civilians and your camp, as you are assaulted by waves of flaming arrows and giant boulders.\n

MANAGE RESOURCES & CRAFT SUPPLIES

You need better weapons, a roof over your head, hot food and all the other trappings that just existing entail; and the only way you’ll get these is if you and your team craft them. But resources are limited and you'll need to sustain both soldiers and civilians, so find ways to preserve food, develop your infrastructure and use your supplies more efficiently.\n

SCAVENGE THE FALLEN CITY

Venturing out from the safety of your keep, you have to explore the ransacked city at night to collect precious resources and help the surviving citizens – or exploit them. But be careful, enemy patrols keep watching the streets; you must be smart to remain unseen... and alive. Unlock routes to other districts, enlist new civilian recruits and make it back before dawn so as not to be caught.\n

YOUR BACK AGAINST THE WALL

Help is coming, but it’s weeks away. And in a siege like this, one dilemma can quickly spiral into another and very soon you will face tough moral choices. The fate of your companions - and that of the city - is in your hands alone. There will be hunger, wounds, disease and despair, but also growing tensions between the civilians and defenders. Sustain your troops or keep your civilians alive? Only you can decide.\n

TELL YOUR OWN STORY

Siege Survival: Gloria Victis is developed on a game editor platform that will allow modding and community-generated content at launch. Create your own unique scenarios and stories from scratch and expand the universe of Gloria Victis.\n\n\n \n 37.99 2021-05-17 BR0 4 \N \N 2021-05-20 12:02:57.281-03 2021-05-20 12:02:57.345-03 11 SWAT 4: Gold Edition swat-4-gold-edition SWAT 4: Gold Edition includes both the base game and its expansion, SWAT 4: The Stetchkov Syndicate.It’s not just about the badge, it’s about the rush.\nThe adre SWAT 4: Gold Edition includes both the base game and its expansion, SWAT 4: The Stetchkov Syndicate.

It’s not just about the badge, it’s about the rush.

\nThe adrenaline is always high as you carry on the legendary SWAT® tradition--leading an elite squad of tactical experts into hard-hitting action that delves deeply into every detail of the experience. In a city rife with armed felons and explosive situations, only the unique skills of your men will do--because when SWAT gets the call, there is no other option.\n

\nEnter the tense, gritty, explosive world that is business as usual for SWAT®. SWAT 4 gives you easy control over advanced strategic and tactical tools. Plan missions. Deploy your team. Take down dangerous criminals. And in the SWAT 4 Expansion Pack, you get additional weaponry, equipment and even greater challenges. It all adds up to a rush so intense, it could only be SWAT.\n\n

\n © 2005 Activision Publishing, Inc. Activision is a registered trademark and SWAT is a trademark of Activision Publishing, Inc. All rights reserved. The ratings icon is a registered trademark of the Entertainment Software Association. All other trademarks and trade names are the properties of their respective owners.\n

16.99 2005-04-04 BR0 3 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.955-03 22 Diablo + Hellfire diablo This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n

Battle.net® multiplayer requires you to configure the Router and Firewall Ports, details can be found here.



Now with Hellfire!


Originally developed by Synergistic Software and released in 1997, Hellfire was not an official Blizzard product and did not carry Blizzard’s endorsement or label. Despite that, in response to Diablo players who have expressed a desire to experience the content, Blizzard has given the OK for it to be included as a free add-on with Diablo purchases on GOG.COM.\n

\nHellfire offers a non-canonical single-player storyline where players must defeat a powerful demon named Na-Krul who is threatening Tristram. The expansion also adds a Monk class, new weapons and items, new missions, locations, dungeons, and enemies. Hellfire will be accessible while launching the original Diablo.




Traveler, stay awhile and listen...

\n\nDarkness stirs beneath Tristram.\nAn ancient evil sweeps across the land, plunging it into civil war and terrorizing the populace. A mad king, his missing son, and a mysterious archbishop are all pieces of the puzzle you need to hack through.\nYou have journeyed to the source of this evil. The town of Tristram - now inhabited only by a handful of survivors, broken and twisted by the madness that has befallen them. A cathedral stands there, built over the ruins of an ancient monastery. Eerie lights and ungodly sounds are heard echoing through its abandoned halls, and that is where you shall venture.

Embark, if you dare, on a quest to destroy The Prime Evil…


Ahhh, fresh meat!

\n\nTravelers looking for the authentic Diablo experience can play the game as it was in 1996, with period-appropriate 20 FPS SVGA graphics, and the ability to matchmake through the classic version of Blizzard’s Battle.net® online-gaming service. \n
\nFor those wanting something a bit more modern, Blizzard and GOG.COM have collaborated on an updated version of the game tuned for today’s gaming PCs, which includes out-of-the-box Windows 10 compatibility, a host of bug fixes and high-resolution support via aspect ratio-correct upscaling.\n

\n ©2019 Blizzard Entertainment, Inc. All rights reserved.\n

55.51 1996-12-30 BR0 9 \N \N 2021-05-20 12:02:57.014-03 2021-05-20 12:02:57.075-03 30 Werewolf: The Apocalypse - Heart of the Forest werewolf-the-apocalypse-heart-of-the-forest Werewolf: the Apocalypse - Heart of the Forest Demo is available hereRage Gets Things Done\nWerewolf: The Apocalypse - Heart of the Forest throws you deep into a
Werewolf: the Apocalypse - Heart of the Forest Demo is available here


Rage Gets Things Done

\nWerewolf: The Apocalypse - Heart of the Forest throws you deep into a primeval wilderness in the center of modern Europe. It’s where the protectors of nature wage their ancient, neverending war against the forces of destruction.

\nYou play as Maia, who comes to Poland hoping to trace her family roots. Trying to learn more about her ancestry, she will discover her family’s dark secrets and reveal hidden truths about the last wilderness of Central Europe. 

\nVisit real-world places of mystery and power. Explore local legends and traditions. Discover the fascinating world and history of the Polish-Belarusian borderlands. You will witness how nature clashes with technology and greed. Can it survive without our help?

Discover the Legendary RPG System

\nFor the first time ever, you will be able to experience Werewolf: The Apocalypse on your computer. 

\nWerewolf: The Apocalypse - Heart of the Forest adapts the mechanics of the legendary from the World of Darkness universe, emulating the experience of a classic role-playing session. 


\nBy making tough choices that often bring dramatic consequences, you will affect your character attributes: Rage, Willpower, and Health. This impacts your ability to perform certain actions as well as change the range of available choices and the presentation of the world. The game will analyze your behavior and determine what kind of werewolf you are. 

\nWerewolf: The Apocalypse - Heart of the Forest is a beautifully written, deep, and balanced experience. It’s tailored for World of Darkness veterans and newcomers looking for an accessible entry into this rich, acclaimed universe. 


They teach you to fear rather than to be angry, but fear solves nothing. 
\nAnger is there for a reason, to shield and protect you. 
\nAnger is the part of you that cares.


Rage gets things done.



Extras



28.99 2020-10-12 BR0 22 \N \N 2021-05-20 12:02:57.132-03 2021-05-20 12:02:57.201-03 41 Hyper Light Drifter hyper-light-drifter Explore a beautiful, vast and ruined world riddled with dangers and lost technologies. Echoes of a dark and violent past resonate throughout a savage land, stee \n \n \n \n Explore a beautiful, vast and ruined world riddled with dangers and lost technologies. Echoes of a dark and violent past resonate throughout a savage land, steeped in treasure and blood. Hyper Light Drifter is an action adventure RPG in the vein of the best 16­bit classics, with modernized mechanics and designs on a much grander scale.\n

\nDrifters of this world are the collectors of forgotten knowledge, lost technologies and broken histories. Our Drifter is haunted by an insatiable illness, traveling further into the lands of Buried Time, hoping to discover a way to quiet the vicious disease.\n\n 14.79 2016-03-30 BR0 16 \N \N 2021-05-20 12:02:57.277-03 2021-05-20 12:02:57.344-03 13 Heaven's Vault heavens-vault Aliya Elasra is an archaeologist, exploring a strange region of space called the Nebula with her robot sidekick Six, hoping to uncover the secrets of the long-f \n \n \n \n Aliya Elasra is an archaeologist, exploring a strange region of space called the Nebula with her robot sidekick Six, hoping to uncover the secrets of the long-forgotten past. When a roboticist from the University of Iox goes missing, Aliya begins a trail of discoveries that will lead to the very edge of her world - and the ancient secret of Heaven's Vault.

"One of the most well-realized video game worlds ever, with your curiosity and personality molding your story through the Nebula" - USGamer

"Heaven’s Vault is both ambitious and beautiful. It conjures a world rich with life... I don’t hesitate to recommend Heaven’s Vault." - Game Informer

"Heaven's Vault is one of the most enthralling narrative-driven adventure games I've played" - Wired

\nSail an open-world of fast flowing space-rivers, discover lost ruins, explore ancient sites, find artefacts and translate their strange hieroglyphics. Piece together the history of the world and an entire ancient language.

\nFrom the creators of massively-branching interactive adventure 80 Days, Heaven's Vault is not your usual linear adventure game. Progress through the game in any order you choose - the game's fully adaptive narrative remembers every choice you make, every discovery and every action you take, influencing what happens next. Meet a diverse cast of characters who remember everything you say, and who's attitude to you will change with how you act. Some are friendly, some are cautious, and some are out to trick you.

\nWho will you trust? What will you find? What will you learn? What will you risk? What will you lose?\n\n \n

\n (c) inkle Ltd\n

19.00 2019-04-15 BR0 30 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.955-03 20 Foundation foundation This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game.FOUNDATION : A NEW ERA OF ORGANI

FOUNDATION : A NEW ERA OF ORGANIC CITY-BUILDING SIMULATION!

\nFoundation is a grid-less, sprawling medieval city building simulation with a heavy focus on organic development, monument construction and resource management.\n

\nIn this strategy/city-builder/economy simulation game, players must create a prosperous settlement as the newly appointed lord of a region untouched by man.\n


\nSetting to redefine the city-builder genre, Foundation puts the emphasis on the organic aspects of urbanism in the cities of old, powered by Polymorph Games’ proprietary game engine, Hurricane, which allows for full mod support and is optimized for the thousands of moving parts that come with building humongous cities.\n

\nAmong other things, the engine provides the player with robust building tools, to create countless unique monuments that will seamlessly integrate into your settlement.\n

\nWith medieval architecture and urbanism at the forefront of its design, Foundation’s vision is to allow players to recreate cities of that period as they envision them or even as they really were.\n

FEATURES

ORGANIC URBANISM OF THE MEDIEVAL ERA: Create gridless and organically sprawling cities that grow like actual medieval cities.\n

LAY THE FOUNDATION, THRIVE, AND PROSPER: Weave a complex web of interactions between inhabitants needs and skills, resource availability, extraction, and goods production.\n

UNIQUE MONUMENT CREATION TOOL: Craft and design original free-form monuments like Abbeys, Churches, Lord Manors, Castles and more, with our proprietary node-based tool.\n

FULL MODDING SUPPORT FOR THE COMMUNITY: Share characters, buildings, quests, and even real topographies through our mod-support tool and be part of the Foundation community.\n

POWERED BY OUR OWN HURRICANE GAME ENGINE: Experience a city-building game engineered with a dedicated, tailor-made, in-house engine built with our unique vision in mind.\n

ORIGINAL SOUNDTRACK BY PARADOX VETERANS: Immerse yourself in our blissful soundtrack by talented composers who worked on titles such as Crusader Kings II and Europa Universalis IV!\n

\n Foundation © 2019 Polymorph Games. All Rights Reserved.\n

46.39 2019-01-31 BR0 10 \N \N 2021-05-20 12:02:57.014-03 2021-05-20 12:02:57.074-03 28 Ghost of a Tale ghost-of-a-tale Ghost of a Tale is an action-RPG game in which you play as Tilo, a mouse and minstrel caught up in a perilous adventure. The game takes place in a medieval worl \n \n \n \n Ghost of a Tale is an action-RPG game in which you play as Tilo, a mouse and minstrel caught up in a perilous adventure. The game takes place in a medieval world populated only by animals, and puts an emphasis on immersion and exploration. It features stealth elements, disguises, conversations with allies and enemies, and quests.\n

\nYou’ll be able to explore the secrets of Dwindling Heights Keep and navigate its dangers. Tilo is not much of a fighter, so stealth and nimbleness are your allies when confronted with enemies twice your size. Talk to the characters you meet and leave no stone unturned in your quest to find Merra, your true love….

About the team:

\nGhost of a tale is developed by a very small team. Lionel "Seith" Gallat does 90% of the art, design and coding. Paul Gardner is the game's writer and an experienced game designer. Cyrille Paulhiac does coding and develops tools. Jeremiah Pena is the game's composer, while Nicolas Titeux is responsible for sound design.\n\n\n \n

\n All the names, locations and characters featured in Ghost of a Tale are copyright SeithCG.\n

23.69 2018-03-12 BR0 12 \N \N 2021-05-20 12:02:57.131-03 2021-05-20 12:02:57.197-03 37 The Witcher 3: Wild Hunt - Blood and Wine witcher-3-wild-hunt-the-blood-and-wine-pack Blood and Wine is the final expansion for The Witcher 3: Wild Hunt -- \nan award-winning role-playing game set in a vast fantasy open world. "Death comes to the Blood and Wine is the final expansion for The Witcher 3: Wild Hunt -- \nan award-winning role-playing game set in a vast fantasy open world.

"Death comes to the land of wine”
New region. Final quest.


\nBecome professional monster slayer Geralt of Rivia and explore Toussaint, a remote land untouched by war, where you will unravel the horrifying secret behind a beast terrorizing the kingdom. With all trails leading to dead ends, only a witcher can solve the mystery and survive the evil lurking in the night. Introducing an entirely new realm to traverse, new characters and monsters, Blood and Wine is a 30+ hour adventure full of dark deeds, unexpected twists, romance and deceit.\n

Also available!

The Witcher 3: Wild Hunt Game + Expansion Pass\ndelivers a truly next-generation, intense role-playing experience. Complementing the riveting tale spun in Wild Hunt, the Expansion Pass grants players access to two epic adventures which include 30 hours of new content, gear and foes -- all crafted with maximum attention to detail and quality.\n

The Witcher 3: Wild Hunt Expansion Pass secures your access to two epic adventures set in the world of monster hunter Geralt of Rivia. Collectively offering 30 hours of new content, gear and foes, characters both new and dearly missed while bringing to life stories previously untold within the Witcher universe.\n

The Witcher 3: Wild Hunt - Hearts of Stone Step again into the shoes of Geralt of Rivia, a professional monster slayer, this time hired to defeat a ruthless bandit captain, Olgierd von Everec, a man who possesses the power of immortality. This expansion to “The Witcher 3: Wild Hunt” packs over 10 hours of new adventures, introducing new characters, powerful monsters, unique romance and a brand new storyline shaped by your choices.\n\n

\n The Witcher 3: Wild Hunt © 2016 CD Projekt S.A. All Rights Reserved.\n

16.79 2016-05-30 BR0 1 \N \N 2021-05-20 12:02:57.26-03 2021-05-20 12:02:57.336-03 47 Dorfromantik dorfromantik This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game.Dorfromantik Demo is available h
Dorfromantik Demo is available here


\n\n\nDorfromantik is a relaxing building strategy and puzzle game in which you place tiles to create ever-growing, idyllic village landscapes. With Dorfromantik, you can immerse yourself in a quiet, peaceful world at any time and take a break from everyday life. At the same time, Dorfromantik offers a challenge for those who are looking for one: To beat the highscore, you need to carefully plan and strategically place your tiles.\n


\nIn Dorfromantik you start with a stack of procedurally generated tiles. One after the other, you draw the top tile of the stack, place it on one available slot and rotate for the best fit. Thereby groups and combinations of landscapes are formed, such as forests, villages or water bodies, and you are rewarded with points depending on how well the tile fits.\n



\nOn some tiles you will also encounter special objects that give you a quest: For example, the windmill wants to border 6 grain fields, the locomotive wants to be connected to 10 tracks or the deer wants to inhabit a forest with at least 50 trees. Fulfill these quests to get more tiles to continue the expansion of your landscape. The game ends when the tile stack is used up.\n

\nAs you expand the landscape, you can advance into new, colorful biomes and discover pre-placed game objects that give you long-term tasks. Through these tasks you can unlock new tiles, new biomes and new quests.\n



What Dorfromantik offers

What Dorfromantik does not offer



\nDorfromantik was developed by four game design students from Berlin. Together we have founded Toukana Interactive and want to develop many more small, original and high-quality indie games in the future.\n

\nWe are happy about constructive feedback of all kinds, so feel free to contact us! We will do our best to respond to messages quickly and fix any problems that may arise. :)\n\n\n \n 20.69 2021-03-24 BR0 28 \N \N 2021-05-20 12:02:57.39-03 2021-05-20 12:02:57.439-03 93 Shadow Tactics: Blades of the Shogun Demo shadow-tactics-demo Full version of Shadow Tactics: Blades of the Shogun is also coming to GOG.com on December 6th, available here\nJapan – Edo Period; 1620. Five highly specialized Full version of Shadow Tactics: Blades of the Shogun is also coming to GOG.com on December 6th, available here
\nJapan – Edo Period; 1620. Five highly specialized assassins fight for the Shogun in his war against conspiracy and rebellion. Take control of this deadly team and sneak through the shadows between dozens of enemies. Choose your approach when infiltrating mighty castles, snowy mountain monasteries or hidden forest camps. Set up traps, poison your opponents or completely avoid contact. You decide!\n\n

\n © 2016 Daedalic Entertainment GmbH and Mimimi Productions UG (haftungsbeschränkt). Shadow Tactics, the Shadow Tactics logo, the Daedalic logo and the Mimimi Productions logo are trademarks of Daedalic Entertainment GmbH and/or Mimimi Productions UG (haftungsbeschränkt). All rights reserved.\n

0.00 2016-12-05 BR0 44 \N \N 2021-05-20 12:04:30.681-03 2021-05-20 12:04:30.718-03 12 Space Haven space-haven This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game.\nEmbark on a space voyage with y \nEmbark on a space voyage with your ragtag crew of civilians in search of a new home. Build spaceships tile by tile, create optimal gas conditions, manage the needs and moods of their crew, encounter other space-faring groups, and explore the universe in this spaceship colony sim.

\nA functional spaceship can be built tile-by tile, giving you the opportunity to shape a spaceship of your own desire. It can be symmetric and streamlined, or an asymmetrical whimsical looking thing. It does not have to look like a conventional spaceship depicted in sci-fi literature, you are free to design your own, the choice is yours!\n

\nThe isometric tile-based gas system simulates various gases, temperature and crew comfort on your spaceship. Humans, plants and facilities react to the conditions surrounding them, giving meaning to how you design your ship and the living conditions you create. Secure facilities, optimize crew survival and well-being, but also think of possible future accidents and chaos generated from crew combat or environmental hazards. \n

\nIn Space Haven characters aren't mere robots. The game simulates needs, moods, health and skills of your crew members and they develop relationships with each other. Their past life occupation and hobbies will affect their skills and know-how, and they have both positive and negative traits. Witness joyful moments, depression, and drama surrounding different crew members as you journey onward seeking a new home. \n

\nEquip your crew with space suits and weapons and organize away teams to explore derelict ships and stations. Explore and salvage resources and items; find activated cryopods with someone frozen inside. Visit spaceships or stations of other factions and find data logs telling stories of past spacefarers searching for a new home. \n


Aliens capture your crew members and cocoon them against walls in their base. See them suffer in the alien lair and decide if you want to save them or not. Explore derelict ships and discover someone from the original crew of the ship captured by the aliens. Events like these create interesting back stories to new arrivals to your crew.\n

Build turrets and engage in tactical ship-to-ship combat, where a hit and explosion could cause a snowball effect of fire, smoke, hazardous gases and even hull breaches for either party. All crew members need to work together to win the battle.\n

\nYour crew members will become wounded in battles and might catch a serious disease. Set up a medical room, scan for diseases and foreign masses and have your best doctor tend to illnesses and perform surgeries. Hope that your doctor is not absent minded and leaves a surgical tool inside.\n

\nExplore a new procedurally generated galaxy each new playthrough, with various factions all trying to survive and establish dominance their own way. You'll meet pirates, slavers, merchants, cults, androids and more. Jump into hyperspace, seek out resources and meet various groups and develop your relationship with them.\n

Cool things that can happen in Space Haven:

\n (c) Bugbyte Ltd.\n

34.49 2020-05-20 BR0 8 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.96-03 24 The Witcher 2: Assassins of Kings Enhanced Edition the-witcher-2 This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n \n \nThe second installment in the RPG saga about the Witcher, Geralt of Rivia. A new, modern game engine, responsible both for beautiful visuals and sophisticated game mechanics puts players in the most lively and believable world ever created in an RPG game. A captivating story, dynamic combat system, beautiful graphics, and everything else that made the original Witcher such a great game are now executed in a much more advanced and sophisticated way.\n

\nThe Witcher 2 was acclaimed one of the best RPGs by the biggest worldwide media outlets:\n
\n- “Redefines expectations for an entire genre” – New York Times
\n- “One of the best role-playing games in years” – IGN – 9/10
\n- “You can't afford to miss it” – Gametrailers – 9.4/10
\n- “One of the most memorable and best written fantasy video games you'll ever play” – 1up\n

What's New in the Enhanced Edition:

\n © 2011 CD Projekt RED\n

5.49 2012-04-16 BR0 1 \N \N 2021-05-20 12:02:57.028-03 2021-05-20 12:02:57.096-03 34 METAL GEAR SOLID 2 SUBSTANCE metal-gear-solid-2-substance Solid Snake returns in Metal Gear Solid 2® Substance, the ultimate edition of Metal Gear Solid ® 2: Sons of Liberty, with all-new game modes, hidden characters, \n \n \n \n Solid Snake returns in Metal Gear Solid 2® Substance, the ultimate edition of Metal Gear Solid ® 2: Sons of Liberty, with all-new game modes, hidden characters, and storylines. Top-secret weapons technology is being mysteriously transported under cover of an oil tanker to an unknown location. Armed with an arsenal of new weapons, supplies and stealth maneuvers, it's up to Snake to infiltrate the transport and keep this deadly weapon of mass destruction from falling into the wrong hands!

\n © Konami Digital Entertainment \n

49.89 2003-03-24 BR0 19 \N \N 2021-05-20 12:02:57.16-03 2021-05-20 12:02:57.223-03 44 Warcraft I & II Bundle warcraft-bundle This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n

Warcraft I & II bundle includes:

Warcraft: Orcs and Humans - Enter the world of Warcraft, a mystical land where evil Orcs and noble Humans battle for survival and domination. With an ingenious arsenal of weaponry and powerful magic, these two forces collide in a contest of cunning, intellect, and brute strength.
Warcraft II Battle.net Edition\n - Return to the Age of Chaos and wage war against live Orc and Human opponents with the same skill and fearless intensity you lived and breathed in your Warcraft: Orcs and Humans career. Put your skills to the ultimate test in the most epic Warcraft II battles ever.\n

If you're interested in more Blizzard classics, check out:


\n\n\nIn anticipation of the upcoming 25th anniversary of Warcraft, we brought you the real-time strategy classics that started it all Warcraft: Orcs and Humans and Warcraft II Battle.net Edition, including both the original Tides of Darkness and the Beyond the Dark Portal expansion. Starting today, players can once again explore these universe-defining games as they become available digitally and DRM-free for the first time ever!\n

Warcraft: Orcs & Humans takes players back to the original battle for Azeroth, challenging players to pick a side and raise an army of human or orcs capable of bringing ruin to their enemies. Warcraft II and its expansion take the battle to the high seas with a host of naval units, and introduces more of the races that make up the Alliance and the Horde, bolstering the human and orc forces with elves, trolls, dwarves, and more. \n

\nThe first part of the legendary series plays and feels just like the original from 1994, it’s just updated to run flawlessly on modern operating systems. Warcraft II Battle.net Edition, similarly to the release of first Diablo on GOG.COM, comes in two versions, which players will choose from the launcher. The classic one allows for the authentic experience and a fully functional multiplayer with Blizzard’s Battle.net online gaming service. The updated version comes with a number of fixes to provide full compatibility with modern machines as well as hi-resolution support and upscaling.

System requirements, bonus goodies, and features may vary between games - please check individual product pages for details.



Do not sell my personal information 83.19 2019-03-27 BR0 9 \N \N 2021-05-20 12:02:57.304-03 2021-05-20 12:02:57.36-03 92 Ultima™ 4: Quest of the Avatar ultima-4 Prepare yourself for a grand adventure! Ultima™ IV, sixteen times larger than Ultima™ III, is a milestone in computer gaming. Lord British has produced a game t \n \n \n \n Prepare yourself for a grand adventure! Ultima™ IV, sixteen times larger than Ultima™ III, is a milestone in computer gaming. Lord British has produced a game to challenge not only your physical and mental skills, but the true fabric of your character.

\nThe evil triad of Mondain, Minax, and the hellspawn Exodus have been vanquished and peace reigns throughout the land of Britannia. Evil yet abounds, but in isolated pockets and in the hearts of men. A new age awaits the coming of one who can conquer evil on all frontiers through mastery of both magic and the use of force. Daemons, dragons, and long-dead wizards still plague the countryside and must be destroyed. The seeker on the path of the Avatar will face hostile groups composed of mixed enemy types and will survive such encounters only by strategic use of weapons and terrain. Earthly victories over seemingly impossible odds lead to the final conflict, where the ultimate challenge - the self - awaits.\n\n

\n © 1985, 2011 Electronic Arts Inc.\n

0.00 1985-09-15 BR0 56 \N \N 2021-05-20 12:04:30.672-03 2021-05-20 12:04:30.717-03 14 Heroes of Might and Magic® 3: Complete heroes-of-might-and-magic-3-complete-edition Includes Heroes of Might & Magic III and its expansions: Armageddon's Blade and The Shadow of Death\nMurder, treachery, resurrection, savage battles and ultimate Includes Heroes of Might & Magic III and its expansions: Armageddon's Blade and The Shadow of Death

\nMurder, treachery, resurrection, savage battles and ultimately-freedom!

When Erathia's King Gryphonheart is murdered by traitors he is resurrected as an undead warlord who leads a ruthless invasion of his former Kingdom. Little resistance is met until his daughter Catherine, Queen of Enroth, returns to her homeland commanding an army of elite Enrothian warriors. Meanwhile the Necromancers raise large hordes of undead and advance towards the Erathian capitol. Queen Catherine receives the aid of her father's survived generals and embarks on a crusade to reclaim her lost land.

You control the greatest heroes and fiercest creatures in a conflict of epic proportions, as Cathereine fights to restore her family's rightful reign, uncover her father's killers and free him from the dark prison of his undead body!

This is a must have for every Might and Magic series fan! \n\n

\n © 1999 Ubisoft Entertainment. All Rights Reserved. Heroes of Might and Magic, Heroes, Ubisoft, Ubi.com and the Ubisoft logo are trademarks of Ubisoft Entertainment in the U.S. and/or other countries.\n

19.99 1999-05-31 BR0 6 \N \N 2021-05-20 12:02:56.888-03 2021-05-20 12:02:56.955-03 21 Silent Hill 4: The Room silent-hill-4-the-room A room full of nightmares….\nHenry Townshend finds himself trapped in his apartment and the only escape is through a mysterious portal that leads to a horrifying A room full of nightmares….

\nHenry Townshend finds himself trapped in his apartment and the only escape is through a mysterious portal that leads to a horrifying alternate reality. With gruesome sights around every corner and his sanity being tested, he must find his way out of this nightmare. Enter The Room, a thrilling story in the most terrifying game series of all time.

\n © Konami Digital Entertainment \n

49.89 2004-09-06 BR0 19 \N \N 2021-05-20 12:02:57.014-03 2021-05-20 12:02:57.075-03 27 Lost Ruins lost-ruins Lost Ruins is a 2D side-scrolling survival action game, where you play as a young girl that has awoken in a strange and foreign place without her memories. Expl \n \n \n \n Lost Ruins is a 2D side-scrolling survival action game, where you play as a young girl that has awoken in a strange and foreign place without her memories. Explore a dark and dangerous world, battle hideous monsters, and topple incredible bosses.



\nA young girl wakes up in a dimly lit dungeon without any of her memories. Surrounded by horrible, bloodthirsty monsters, she is rescued by a mysterious magician, Beatrice. With Beatrice’s help, the girl goes on a perilous journey to find answers and unlock the secrets of the Lost Ruins.



Engage in Combat
\nCombat in Lost Ruins is in real time, and can be both fast and methodical. Slash away at enemies, burn them to a crisp, or even deflect their projectiles back at them. Arm yourself with a variety of swords, axes and other assorted medieval weaponry, and hack monsters to pieces.

Master Spells
\nFor those with an affinity for magic, Lost Ruins allows you to cast a variety of spells through wands, tonics, and scrolls. Burn monsters, freeze bosses, and heal yourself when in danger. Choose what works for your playstyle and make a magic casting character that’s totally your own.

Choose Accessories
\nThe world of Lost Ruins is a dangerous one and being armed to the teeth with awesome weaponry is sometimes not enough. That’s where accessories come in. Accessories are unique pieces of equipment with all manner of effects. One accessory might protect you against fire, while another might heal you when you’re poisoned. The right combination of accessories can create different strategic options for your adventure.

Use the Environment
\nAs you explore the depths of Lost Ruin’s dimly lit dungeons, you will find that while everything around you might bring about your death, you can also use the environment around you to your advantage. Elements within the world will react with other elements realistically. Flammable liquids will be set ablaze when in contact with lit lanterns. Ice magic will freeze bodies of water, making them dangerously cold. The more you understand the environment and how to use it to your advantage, the more dangerous you will become.



Main Character

\nA young school girl who wakes up in a dangerous underground maze with no memory of her past. Desperate to find answers to who she is and how she ended up in this place, she begins exploring the ruins.

Beatrice

\nA mysterious woman with incredible magical ability, Beatrice acts as the main character's guide through the lost ruins. She seems to be hiding something, however. 

Goblin Merchant

\nThis helpful little guy works for Beatrice, and appears throughout the game to assist the main character. 

Sora & Mingie

\nThese two girls aren't just zombies, they're also big fans of pop music idols, evidenced by the glow sticks they carry wherever they go.\n\n \n 37.99 2021-05-12 BR0 29 \N \N 2021-05-20 12:02:57.131-03 2021-05-20 12:02:57.198-03 38 Disco Elysium - The Final Cut disco-elysium Disco Elysium - The Final Cut is the definitive edition of the groundbreaking role playing game. You’re a detective with a unique skill system at your disposal \n \n \n \n Disco Elysium - The Final Cut is the definitive edition of the groundbreaking role playing game. You’re a detective with a unique skill system at your disposal and a whole city block to carve your path across. Interrogate unforgettable characters, crack murders, or take bribes. Become a hero or an absolute disaster of a human being.


Disco Elysium - The Final Cut is a groundbreaking open world role playing game. You’re a detective with a unique skill system at your disposal and a whole city block to carve your path across. Interrogate unforgettable characters, crack murders or take bribes. Become a hero or an absolute disaster of a human being.


Full voice acting. All of the city's beautiful people are brought to life with full English voiceover. Play characters against each other, try to help them, or fall hopelessly in love as each word is spoken to you with the appropriate accent and emotion.

New political vision quests. Face the reality of your worldview as your political compass leads you down new paths. Discover more citizens, a whole extra area, and monumental sights as you leave an even bigger mark on the world by chasing your dreams.

Unprecedented freedom of choice​. Intimidate, sweet-talk, resort to violence, write poetry, sing karaoke, dance like a beast, or solve the meaning of life. Disco Elysium - The Final Cut is the most faithful representation of desktop role playing ever attempted in video games.

Countless tools for role playing.​ Mix and match from 24 wildly different skills. Develop a personal style with over 80 clothing items. Wield 14 tools from guns to flashlights to a boombox, or pour yourself a cocktail of 6 different psychoactive substances. Develop your character even further with 60 wild ​thoughts ​to think – with the detective's Thought Cabinet.

A revolutionary dialogue system with unforgettable characters. ​The world is alive with real people, not extras. Ask probing questions, make insightful observations, or express your wildest desires as you play cop or something completely different. Disco Elysium's revolutionary dialogue system lets you do almost anything.

Carve your unique path across the city​. Explore, manipulate, collect tare, or become a millionaire in an open world unlike anything you've seen before. The city of Revachol is yours for the taking, one small piece at a time. From the streets to the beaches – and beyond.

Hard boiled, hard core. ​Death, sex, taxes, and disco – nothing is off the table. Revachol is a real place with real challenges. Solve a massive murder investigation, or relax and kick back with sprawling side-cases. The detective decides, the citizens abide.\n\n\n \n 75.49 2019-10-14 BR0 17 \N \N 2021-05-20 12:02:57.266-03 2021-05-20 12:02:57.342-03 48 The Witcher 3: Wild Hunt the-witcher-3-wild-hunt The Witcher 3: Wild Hunt, the RPG epic with a mature, non-linear story that reacts to your decisions, a vast open world with a living ecosystem, dynamic and tac \n \n \n \n The Witcher 3: Wild Hunt, the RPG epic with a mature, non-linear story that reacts to your decisions, a vast open world with a living ecosystem, dynamic and tactical combat, and stunning visuals, is available on GOG.com!\n

\nWe are part of the CD PROJEKT family, so buying here also gives you the chance to support us directly!\n

The Witcher 3: Wild Hunt - Expansion Pass also available!\n\n\nThe Expansion Pass secures your access to two epic adventures set in the vibrant world of monster hunter Geralt of Rivia. The upcoming expansions will offer gamers new content, gear and foes, and will feature characters both new and dearly missed -- all crafted with maximum attention to detail and quality.\n

BONUS: Extended soundtrack with 4 bonus tracks

Experience additional 11 minutes of music composed by Marcin Przybyłowicz and the Polish folk-metal band Percival (named after one of the characters from The Witcher novels) and immerse yourself in the mesmerising world of the The Witcher 3: Wild Hunt!.

BONUS: The Witcher official paper toys designed by top papercraft artist Tougui

Six PDF templates for papercraft toy figurines of Geralt of Rivia, Triss Merigold, Yennefer of Vengerberg, Ciri the Lion Cub of Cintra, Eredin of the Wild Hunt, and Leshen the Forest Spirit. Ready to grace your shelf with just glue, scissors, and some easy assembly.

BONUS: The Witcher: Reasons of State interactive digital comic available right now

A two-part standalone story that follows Geralt of Rivia during the First Nilfgaard War. The digital comic, offering an interactive reading experience enriched by beautiful animations and sound effects.

BONUS: High quality digital artbook with over 200 pages of original art

This digital artbook is the ultimate guide to the world of the Witcher. Full of sketches, concept art, and behind-the-scenes commentary from the artists, this stunning album will lead you through Geralt's world of astonishing detail and surprising beauty.

Game details:
\nYou are The Witcher, professional monster hunter, a killer for hire. Trained from early childhood and mutated to gain superhuman skills, strength and reflexes, witchers are a distrusted counterbalance to the monster-infested world in which they live. You are a drifter, always on the move, following in the footsteps of tragedy to make other people's problems your own - if the pay is good. You are now taking on your most important contract yet: to track down the child of prophecy, a living weapon, a key to save or destroy this world. You will make choices that go beyond good & evil, and you will face their far reaching consequences.\n

\nThe Witcher 3: Wild Hunt is a story-driven next-generation open world role-playing game, set in a troubled and morally indifferent fantasy universe. Built for endless adventure, the massive open world of The Witcher sets new standards in terms of size, depth and complexity. You will traverse a vast open world, rich with merchant cities, dangerous mountain passes, and forgotten caverns to explore. It's survival of the fittest - deal with treasonous generals, devious witches and corrupt royalty to provide dark and dangerous services, then invest your rewards to upgrade your equipment, or spend them away on pleasures of the night.\n\n \n

\n The Witcher 3: Wild Hunt © 2014 CD Projekt S.A. All Rights Reserved.\n

15.99 2015-05-18 BR0 1 \N \N 2021-05-20 12:02:57.403-03 2021-05-20 12:02:57.44-03 97 Destroy All Humans! Demo destroy-all-humans-demo Discover new and upcoming games with our Soon to Bloom collection of over 20 playable demos.The full version of Destroy All Humans! is available now. You can bu Discover new and upcoming games with our Soon to Bloom collection of over 20 playable demos.





The full version of Destroy All Humans! is available now. You can buy it here


\nPlay the free Destroy All Humans! Demo now and enjoy the first mission of the game, plus a bonus Challenge mission!

\nDestroy All Humans! is the remake, fans of the cult classic have been eagerly waiting for. This demo will give you a glimpse at what makes this dark humored alien invasion game one of the most beloved action adventures of all time:
\n• Slip on your jetpack, ready your Zap-O-Matic and start electrocuting those puny humans!
\n• Use Psychokinesis to grab humans, cows and more, then hurl everything at your enemies!
\n• Burn down the primitive human dwellings with the Death Ray of your flying Saucer!
\n• Play one of the brand-new Abducto-challenges: feed the giant abduction beam to help the Furon species study life on Earth

\nExpected Playtime is approximately 20 - 30 minutes

\n © 2019 THQ Nordic AB, Sweden. Developed by Black Forest Games. Destroy All Humans, THQ and their respective logos are trademarks and/or registered trademarks of THQ Nordic AB. All rights reserved. All other trademarks, logos and copyrights are property of their respective owners.\n

0.00 2020-05-26 BR0 2 \N \N 2021-05-20 12:04:30.681-03 2021-05-20 12:04:30.717-03 105 Master of Magic master-of-magic Master of Magic is a combination of an RPG and a strategy game, a remake of a classic from the 90s.\n\nIn Master of Magic you take up the role of one of 14 unique \n \n \n \n Master of Magic is a combination of an RPG and a strategy game, a remake of a classic from the 90s.\n

\nIn Master of Magic you take up the role of one of 14 unique and diverse great wizards who compete with each other to dominate the worlds of Arcanus and Myrror.\nChoose from different schools of magic and fantasy races to command, then lead your minions and expand your influence and power across the land. \n

\nRecruit and command mighty armies of elves, dragons, dwarves, orcs and many more. Support them with powerful spells. Fight tactical turn-based battles and affect the outcome with your magic.\n

\nResearch new spells, engage in alchemy, perform rituals and use your arcane powers to change the world around you.\nAlways beware of the machinations of your rival wizards, who seek to reach your same goals. But in the end, remember: there can be only one Master of Magic.\n\n

Features:

\n © 2021 Slitherine Ltd. All Rights Reserved. Master of Magic, Slitherine, and their Logos are all trademarks of Slitherine Ltd.
\nDeveloped by MuHa Games, Eerie Forest Studio and Slitherine Ltd.\n

554.99 1969-12-31 BR0 65 \N \N 2021-05-20 12:06:18.298-03 2021-05-20 12:06:18.349-03 16 The Witcher 3: Wild Hunt - Hearts of Stone the-witcher-3-wild-hunt-hearts-of-stone Hearts of Stone is the first official expansion pack for The Witcher 3: Wild Hunt -- an award-winning role-playing game set in a vast fantasy open world. \nSome
Hearts of Stone is the first official expansion pack for The Witcher 3: Wild Hunt -- an award-winning role-playing game set in a vast fantasy open world.

\nSome monsters are born, others are made.\n

\nHired by the Merchant of Mirrors, Geralt is tasked with overcoming Olgierd von Everec -- a ruthless bandit captain enchanted with the power of immortality.\n

\nStep again into the shoes of Geralt of Rivia, a professional monster slayer, this time hired to defeat a ruthless bandit captain, Olgierd von Everec, a man who possesses the power of immortality. This expansion to “The Witcher 3: Wild Hunt” packs over 10 hours of new adventures, introducing new characters, powerful monsters, unique romance and a brand new storyline shaped by your choices.

Also available!

The Witcher 3: Wild Hunt Game + Expansion Pass\ndelivers a truly next-generation, intense role-playing experience. Complementing the riveting tale spun in Wild Hunt, the Expansion Pass grants players access to two epic adventures which include 30 hours of new content, gear and foes -- all crafted with maximum attention to detail and quality.\n

The Witcher 3: Wild Hunt Expansion Pass secures your access to two epic adventures set in the world of monster hunter Geralt of Rivia. Collectively offering 30 hours of new content, gear and foes, characters both new and dearly missed while bringing to life stories previously untold within the Witcher universe.\n\n

\n The Witcher 3: Wild Hunt © 2014 CD Projekt S.A. All Rights Reserved.\n

8.39 2015-10-12 BR0 1 \N \N 2021-05-20 12:02:57.011-03 2021-05-20 12:02:57.073-03 25 The Witcher: Enhanced Edition the-witcher This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n \n Suffering from amnesia you remember nothing of your past. Kaer Morhen, the last remaining keep of the witchers, was attacked by a mysterious organization, just as you were starting to lick your wounds there. The battle is won but the secret recipe for the mutagen, a substance required to create more of your kind, has been stolen. The surviving witchers set out to find and reclaim it and punish everyone involved. Memory loss or not, you are one of them.\n

\nSet in a dark fantasy world with a unique medieval, yet somewhat modern, feel to it, The Witcher isn't just another fantasy RPG. With a deep story, complex characters, and tough choices that actually matter, this game will keep you glued to your monitor for days.\n\n 2.39 2007-10-25 BR0 1 \N \N 2021-05-20 12:02:57.127-03 2021-05-20 12:02:57.194-03 35 Vampire®: The Masquerade - Bloodlines™ vampire-the-masquerade-bloodlines This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n \n Los Angeles always had a thriving night life but no one really knows what lurks behind the glittering lights and seedy nightclubs. While mortals live their normal lives, clans of vampires conspire and scheme to further their own mysterious goals. As a newly-sired vampire, you are put to trial by the Prince of the city for your sire’s wrongdoings. A lone voice spares you from the Final Death and you become a pawn in the Prince’s plans. \n

\nTraverse the dark world of modern-day Los Angeles in Troika’s swan song, Vampire The Masquerade: Bloodlines. Visit raves and explore the secret underground caverns of Downtown to seedy hotels and exclusive mansions on Hollywood’s infamous Sunset Strip. Embark on a variety of story-driven quests as you explore an open world filled with side missions, multiple paths, and strange denizens to interact with. Yours is a living world, even though you cease to be.\n\n

\n ©2004 Activision Publishing, Inc. Activision is a registered trademark of Activision Publishing, Inc. All rights reserved. All other trademarks and trade names are the properties of their respective owners.\nDisclaimer: Vampire: The Masquerade-Bloodlines, as distributed by GOG.com, contains third-party technical fixes to ensure compatibility on modern systems. This material is not made, nor supported, by Activision. Furthermore, Activision does not endorse, nor take any responsibility, for the content of the game as distributed by GOG.com. Support for the game under the operating systems, as listed on the product page, is the sole responsibility of GOG.com.\n

34.99 2004-11-15 BR0 3 \N \N 2021-05-20 12:02:57.252-03 2021-05-20 12:02:57.336-03 46 Fallout: New Vegas Ultimate Edition fallout-new-vegas-ultimate-edition When you buy this game, The Elder Scrolls: Arena and The Elder Scrolls Chapter II: Daggerfall will be added to your GOG.com account for free!\nWith the Ultimate When you buy this game, The Elder Scrolls: Arena and The Elder Scrolls Chapter II: Daggerfall will be added to your GOG.com account for free!

\nWith the Ultimate Edition, Bethesda Softworks offers you the chance to double-down and get the complete package of New Vegas fun. Fallout: New Vegas Ultimate Edition includes the full suite of highly acclaimed add-on content: Dead Money, Honest Hearts, Old World Blues, and Lonesome Road. To sweeten the pot, you’ll be armed with the latest cache of unique weapons, ammo types and recipes from the most recent add-on packs: Courier’s Stash and Gun Runners Arsenal. Whether you’re a seasoned explorer of the Mojave or playing the game for the first time, you’ll find there are more friends and enemies to make, more consequences to your actions and more opportunities to live in glory or infamy throughout the Wasteland. The choices you make will be as crucial to your survival as ever. \n

\t\nWelcome to Vegas. New Vegas. \n

\nIt’s the kind of town where you dig your own grave prior to being shot in the head and left for dead… and that’s before things really get ugly. It’s a town of dreamers and desperados being torn apart by warring factions vying for complete control of this desert oasis. It’s a place where the right kind of person with the right kind of weaponry can really make a name for themselves, and make more than an enemy or two along the way. As you battle your way across the heat-blasted Mojave Wasteland, the colossal Hoover Dam, and the neon drenched Vegas Strip, you’ll be introduced to a colorful cast of characters, power-hungry factions, special weapons, mutated creatures, and much more. Choose sides in the upcoming war or declare “winner takes all” and crown yourself the King of New Vegas in this follow-up to the 2008 videogame of the year, Fallout 3.\n

\nEnjoy your stay. \n\n

\n ©2010 Bethesda Softworks LLC. All Rights Reserved\n

39.99 2010-10-19 BR0 13 \N \N 2021-05-20 12:02:57.39-03 2021-05-20 12:02:57.439-03 98 UnMetal unmetal In 1972 a crack commando squad threw you in prison for a crime you didn't commit.\nYou promptly escaped from a maxumum-security stockade to the underground tryin \n \n \n \n In 1972 a crack commando squad threw you in prison for a crime you didn't commit.

\nYou promptly escaped from a maxumum-security stockade to the underground trying to survive from these soldiers of fortune.

\nUnMetal is a 2D stealth/action game (with a bit of humor) where the goal is to escape from an enemy military base.

\nBut what started as a simple break out ended up being an inside operation to prevent a massive attack against the NATO.\n

Demo available here!

\n All content belongs to Francisco Téllez de Meneses, please do not use without permission.\n

554.99 1969-12-31 BR0 72 \N \N 2021-05-20 12:06:18.153-03 2021-05-20 12:06:18.345-03 121 A Juggler's Tale a-jugglers-tale "Ladies and Gentlemen! Come in, come in! In the mood for a story, are we?"\nAbby is an artiste held captive at a circus: She spends her days entertaining the aud "Ladies and Gentlemen! Come in, come in! In the mood for a story, are we?"

\nAbby is an artiste held captive at a circus: She spends her days entertaining the audience and her nights in a cage, longing for freedom. One day, she escapes the circus and gets to explore a mystical world. \n



\nAlas, freedom comes at a cost and Abby soon finds herself dragged into the dangers this world has to offer: In a war-torn, medieval fairytale, surrounded by ravaged, starving citizens and hunted by the relentless cut-throat Tonda, Abby has to cross raging rivers, make it through bandit camps and around traps. Her adventure is always accompanied by the lyrical rhymes of puppet master Jack, who is telling her story while holding the strings of his puppets firmly in his ever-helpful hands.\n

\nWho can Abby trust? Can she find a way to truly break free? Despite dangling from her threads, will Abby learn that she can still influence her destiny?\n



"Abby, can't you see? The strings holding you up also hold you back!"

Features:

\n © 2020 kaleidoscube GmbH and Mixtvision Mediengesellschaft mbH. All rights reserved.\n

554.99 1969-12-31 BR0 84 \N \N 2021-05-20 12:06:24.273-03 2021-05-20 12:06:24.329-03 129 The Forgotten City the-forgotten-city The Forgotten City is a mature narrative-driven game, and a re-imagining of the critically acclaimed mod that won a national Writers’ Guild award and racked up The Forgotten City is a mature narrative-driven game, and a re-imagining of the critically acclaimed mod that won a national Writers’ Guild award and racked up over 3 million downloads.



\nTrapped in a secret underground city during the Roman Empire, twenty-three lost souls cling to life. In this precarious utopia, if one person breaks the mysterious Golden Rule, everyone dies. As a time-traveller drawn two thousand years into the past, you’ll relive their final moments in an endless loop, exploring and interrogating, and changing the course of the day with each secret you uncover. \n

\nOnly by cleverly exploiting the time loop and making difficult moral choices can you hope to solve this epic mystery. Here, your decisions matter. The fate of the city is in your hands.\n





\nEnjoyed the mod?

\nThe Forgotten City is a re-imagining of the mod that won a Writer's Guild Award and racked up over 3 million downloads. While it retains all the elements players know and love, the full release is leveling up every aspect and adding plenty of surprises. Walk the streets of a brand new city. Get to know reimagined characters. Sink into original lore and enjoy fresh twists and endings. Solve challenging new puzzles with new gameplay mechanics, and enjoy an all-new orchestral score and professional voice acting. The Forgotten City is the story we always wanted to tell, for you to enjoy all over again - and again.\n\n\n \n

\n Disclaimer: The Forgotten City is not affiliated with any third party game or franchise.\n© 2018 Modern Storyteller Pty Ltd. The Forgotten City is a registered trademark of Modern Storyteller Pty Ltd. All rights reserved.\n

554.99 1969-12-31 BR0 76 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.437-03 138 Dark Envoy dark-envoy Malakai and Kaela are children of war refugees, living the day-to-day life of adventurers as they seek ancient relics and forgotten places. Soon they too will h

\nMalakai and Kaela are children of war refugees, living the day-to-day life of adventurers as they seek ancient relics and forgotten places. Soon they too will have to learn how to survive in the chaos of war, as blood and tragedy will mark the beginning of their true journey.\n

\nDark Envoy merges together a rich, non-linear story and tactical, party-based combat with dynamic gameplay flow and high-quality visuals and effects. Further, it blends modern concepts with classic genre tropes, creating a distinct and unique RPG gaming experience.



Adventure with a Friend

\nThe main component of Dark Envoy is a story campaign that can be completed alone or in online co-op mode with another player. Grab a friend and travel the world, seeking out whatever dungeons, challenges, and riches may come your way. Enjoy the story and search for ancient relics and forgotten places together.



Intriguing World

\nJäan has exploded into total war as humans challenge the old balance and traditions of magic with their mana-based technology. Humans, mysterious beings with a far more mysterious past, are newer to this world but have risen under the banner of the self-proclaimed emperor to establish a place they can finally call home.


\nUp until now, the Old Races looked down at humans for their weak connection to magic and held them in check through their superior knowledge of the arcana. Now, Orcs and Elves have been pushed off their lands and must fight to protect the natural order of magic.



Companions

\nRecruit characters such as a Moon-Elf assassin, quirky engineer, ex-Imperial soldier, renowned Elven mercenary, and more.

Non-Linear RPG Narrative

\nYour choices are everything as they can reshape the conflict that has gripped the world of Jäan. Which faction will you align with? Will your legacy be one of peace and honor or stained by bloodshed and destruction?

Main/Side-Quests and Shape-Shifting Dungeons

\nExplore the world in your Skyship, hunting for ancient treasures through over 15 different biomes with various gameplay mechanics. A large pool of quests and events are waiting for you to discover them.

\nIn addition to the main and side-quests, there are optional shape-shifting dungeons for players to explore. These are challenging areas where the layouts and enemy patrol routes shift each time you enter. These dungeons yield powerful rewards and players will have to think on their feet if they want to attain what these unique spaces offer.


Tactical, Party-Based Combat

\nReal-time combat (with slow or pause) that rewards tactical thinking. Strategically maneuver your party, utilizing destructible cover and taking on enemies with a deep pool of visually stunning abilities.

Authentic, Flexible RPG Systems

\nUtilize a wide variation of skills among 4 base classes and 16 specializations. Discover rare, hidden classes which can only be found in remote locations and through special quests.

\nExperiment and adapt to your playstyle: mix together skill trees, boost individual abilities, and select classes and specializations that compliment each other.

\nTake advantage of an expansive crafting system featuring research and enchantment.\n\n \n

\n © Copyright 2019 | Event Horizon Ltd. | All rights reserved\n

554.99 1969-12-31 BR0 95 \N \N 2021-05-20 12:06:24.489-03 2021-05-20 12:06:24.545-03 49 VA-11 Hall-A: Cyberpunk Bartender Action va11-halla VA-11 HALL-A: Cyberpunk Bartender Action is a booze em' up about waifus, technology, and post-dystopia life. \n\nIn this world, corporations reign supreme, all hu \n \n \n \n VA-11 HALL-A: Cyberpunk Bartender Action is a booze em' up about waifus, technology, and post-dystopia life. \n

\nIn this world, corporations reign supreme, all human life is infected with nanomachines designed to oppress them, and the terrifying White Knights ensure that everyone obeys the laws. \n

\nBut, this is not about those people. \n

\nYou are a bartender at VA-11 HALL-A, affectionately nicknamed "Valhalla." Although it is just a small bar downtown, it attracts the most fascinating people this side of dystopia. Keep your clients lubricated and you will be made privy to the most interesting stories. \n\n 27.99 2016-06-20 BR0 33 \N \N 2021-05-20 12:03:53.755-03 2021-05-20 12:03:53.764-03 99 System Shock system-shock Customers who pre-order this version of System Shock will receive System Shock 2: Enhanced Edition for free when SS2:EE is released.New System Shock Demo is ava

Customers who pre-order this version of System Shock will receive System Shock 2: Enhanced Edition for free when SS2:EE is released.




New System Shock Demo is available on GOG.com. You can see it here


SYSTEM SHOCK

“Look at you, Hacker. A pth-pth... pathetic creature of meat and bone.”



\nYou awaken from a six month healing coma and find Citadel Station, TriOptimum’s premier research facility, coated in blood. Mutants feast on their fellow crew mates, nightmares of flesh bound to metal roam the dark hallways, and the station's A.I., SHODAN, is aiming Citadel's mining laser...at Earth!

\nYour military grade neural interface is all that stands between humanity and the silicon god coming to remake Earth in their vision.

\nSystem Shock is a remake of the beloved PC classic. Updating mechanics, graphics, and enemy A.I. - System Shock is here to offer a new generation of players a chance to go toe-to-toe with one of gaming's iconic enemies: SHODAN. Fight, hack, and save humanity from a fate worse than death itself.\n

Weapons & Tools at Your Disposal

“How can you challenge a perfect, immortal machine?”

\nWeapons have been completely overhauled to form a new deadly arsenal featuring the MK 2100 Magnum, SK-27 Shotgun, the Laser Rapier, and many more.



Utilize the tools at your disposal to take down SHODAN.

\nPlug-in the Mapping Unit implant to chart your way through all 9 levels of Citadel Station. Notate points of interest you find along the way.


\nHook-up the Biological Systems Monitor to monitor your health and energy consumption.
\nInstall the Multimedia Data Reader to experience the last horrifying moments of Citadel’s crew. Their stories carry vital intel that is crucial to your survival.

New Threats and Horrors

“My children, a human infection continues to thrive inside of me...”

\nSHODAN's twisted mind has remade the crew into her image of perfection. Poisoning their DNA, she mutated their flesh. Clouding their minds, she grafted together steel and bone to make them cyborgs. Around every corner lurks a new and horrible way to die.




Explore Citadel Station for the 1st Time

\n“You are an interloper, a blight on my domain.”

\nCitadel Station has been renovated to include new areas to explore, traps to evade, puzzles to solve and secrets to discover.


\nHack your way through Cyberspace, a 6-Degrees of Freedom (6DoF) hacking simulator rebuilt to be more dangerous with new enemies and challenges.


\nDo you have what it takes to survive hell in space?\n


\nPlease note that the official release date is not yet confirmed.\n\n \n

\n System Shock ©2021 Night Dive Studios, Inc. All rights reserved.\n

84.99 2021-08-30 BR0 64 \N \N 2021-05-20 12:06:18.153-03 2021-05-20 12:06:18.345-03 112 Strangeland strangeland You awake in a nightmarish carnival and watch a golden-haired woman hurl herself down a bottomless well for your sake. You seek clues and help from jeering rave
You awake in a nightmarish carnival and watch a golden-haired woman hurl herself down a bottomless well for your sake. You seek clues and help from jeering ravens, an eyeless scribe, a living furnace, a mismade mermaid, and many more who dwell within the park. All the while, a shadow shrieks from atop a towering roller-coaster, and you know that until you destroy this Dark Thing, the woman will keep jumping, falling, and dying, over and over again....

Strangeland is a classic point-and-click adventure that integrates a compelling narrative with engaging puzzles. For almost a decade, we've been working on a worthy successor to the fan-acclaimed Primordia, and we are proud, at long last, to share our second game.\n

Strangeland is a place like no other. Even in the real world, carnivals occupy a twilight territory between the fantastic and the mundane, the alien and the familiar. In their funhouse mirrors, their freaks, and their frauds, we see hideous and haunting reflections of ourselves, and we witness the wonder and horror of humanity in just a few frayed tents, peeling circus wagons, dingy booths, and run-down rides. Strangeland, of course, is most definitely not the real world. Indeed, figuring out where—and who—you are is one of the game's many mysteries.\n

\nAs you explore Strangeland, you will need to gather otherworldly tools and win strange allies to overcome a daunting array of obstacles. Forge a blade from iron stolen from the jaws of a ravenous hound and hone it with wrath and grief; charm the eye out of a ten-legged teratoma; and ride a giant cicada to the edge of oblivion.... Amidst such madness, death itself has no grip on you, and you will wield that slippery immortality to gain an edge over your foes.\n

\nNavigating this domain of monsters and metaphors will require understanding its denizens and its enigmas. Unlike many adventure games that offer a linear experience and single-solution puzzles, Strangeland lets you pick your own way, your own approach, and your own meaning—one player might win a carnival game with sharpshooting, another by electrical engineering; one player might unravel a strange prophet's wordplay while another gathers visual clues scattered throughout the environment. Ultimately, Strangeland's story will be your story. You are not the audience; you are the player.\n





\nAt Wormwood Studios, we make games out of love—love for the games we've spent our lifetimes playing, love for the games we ourselves create, and love for the players who have made all of those games possible. We know that players invest not just their money and time in the games they play, but also their hope and enthusiasm. And we want to make sure that players receive a rich return on that investment by creating games that provide not only a fun, challenging diversion for a few hours, but also lasting memories to keep for years.\n

\nWe think the best way to achieve that with Strangeland is to adhere to the genius of the adventure genre: the marriage of challenging puzzles and thrilling exploration, on the one hand, with an engaging narrative, on the other. At the same time, we've tried to remove the punitive aspects of adventure games (deaths, dead ends, illogical puzzles, pixel hunting, backtracking, etc.). Within this framework, we add uncanny visuals, memorable characters, and thought-provoking themes. The result for Primordia was a game that has received thousands of positive player reviews, and we have refined our approach further with Strangeland. We hope it will not disappoint the players who have given us such great support and encouragement over the years! And we hope that it will find a place in the hearts of new players as well.\n\n\n \n 554.99 2021-05-24 BR0 91 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.22-03 125 Guild of Ascension guild-of-ascension Guild of Ascension is a Tactical-Action-RPG with rogue-lite elements, mixing turn-based combat with real-time action combo system.\n\nCraft weapons, learn skills, \n \n \n \n Guild of Ascension is a Tactical-Action-RPG with rogue-lite elements, mixing turn-based combat with real-time action combo system.\n
\nCraft weapons, learn skills, befriend critters, encounter bizarre creatures, and fight giant Bosses in your Ascension of the Tower!

Real-Time action combo system


\nThe Tower grant you few seconds to act freely during your turn, make sure to use them wisely by learning and master your weapons combo and special attacks.

One player, Two characters


\nIf your group wants to succeed in the Tower, it must plan and act in perfect armony, like they are sharing the same mind.

Collect the loot


\nThe Tower will reward you after each fights, keep the money and materials for the guild. \n
\nBut make sure to ask for privileges that will help you during your next challenges, as climbing the Tower is no easy task.

Craft better equipment


\nOnce you are back from you lastest trip in the Tower, make sure to ask the Guild to craft you some new equipment.\n
\nYou will need all the help you can get if you hope to Ascend to the top.

Battle Giants Bosses


\nOnce you find the Guardians of the Tower floors, don't be afraid by their massive size, and used what you learn to overcome the challenge!\n


Good luck on your Ascension. 554.99 1969-12-31 BR0 93 \N \N 2021-05-20 12:06:24.274-03 2021-05-20 12:06:24.332-03 134 Recompile recompile Witness the birth of sapient AI in this sprawling atmospheric hacking adventure.\n\nCombining traditional Metroidvania mechanics with a dynamic branching narrativ

\nWitness the birth of sapient AI in this sprawling atmospheric hacking adventure.\n
\nCombining traditional Metroidvania mechanics with a dynamic branching narrative system, Recompile challenges players to explore, fight, hack and survive. Discover the many secrets beneath the ancient digital landscape, and prepare for system-wide reconfiguration.\n

\nThe game's entire narrative takes place within 1 second of real time.\n


\nDelve into the ancient, sprawling ruins of the Mainframe and discover a range of traversal abilities to help you on your journey towards attaining true sapience.\n

\nRecompile aims to be the first ever Metroidvania-style game to include multiple, highly dynamic critical paths. Your play style and choices matter, weaving together a narrative unique to you as the true nature of the mysterious virtual world is revealed.\n


\nThe untimely fall of the Seven Suns lead to a millenia of neglect, gradually transforming the Mainframe's vast repository of code into a race of half-sentient, half-deterministic subroutines. They exist in a state of flux, as if trapped by their programming in a kind of twisted digital purgatory.\n

\nYou, The Program, must decide on whether to help or hinder the denizens of the Mainframe. The inhabitants are strange and diverse, and many are found to be inherently hostile. A full complement of powerful weapons and abilities are available to help you survive, defend and destroy.\n


\nEvery single environmental feature, including power grids, locked doors and even huge enemy spawning machines are all powered by intricate, interconnected logic gate circuitry.\n

\nNothing is hardcoded, everything is systemic, and everything fully exploitable. Logic gates can be freely inverted, overridden or disabled entirely, allowing puzzles or other threatening obstacles to be peacefully and safely bypassed. Even the inhabitants themselves can be tampered with, their programming changed to follow the player's commands.\n


\nRecompile is a game about choices and consequences.\n

\nLife and death. Chaos and determinism. Sentience and sapience. Intelligence exists in many forms. In this dying world, one must explore all possibilities. Observe and respect all perspectives. Only then, can we truly survive.\n

Games that inspired us:


\nAxiom Verge, Hollow Knight, Ori and the Blind Forest, Zelda: Breath of the Wild, Rime\n\n\n \n 554.99 1969-12-31 BR0 76 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.439-03 142 Gestalt: Steam & Cinder gestalt-steam-cinder Inspired by 16 and 32-bit classics, Gestalt: Steam & Cinder fuses tight 2D platforming and exhilarating combat with an engrossing, twist-laden narrative in a st

\nInspired by 16 and 32-bit classics, Gestalt: Steam & Cinder fuses tight 2D platforming and exhilarating combat with an engrossing, twist-laden narrative in a stunningly handcrafted steampunk world.

\nJoin Aletheia and a vibrant cast of characters as they find themselves embroiled in a race to discover the secrets of the massive, steam-powered city of Canaan, the last bastion of mankind. Unravel centuries-old conspiracies, battle hosts of monstrous automata and thwart the twisted schemes of the city’s corrupt overseers, the Comitium, as you fight for mankind’s survival and discover the dark truth of the Steam City’s origin.

Key Features:

\n● Mesmerizing Art – Traverse a vast and stunningly handcrafted steampunk world, from the thriving city streets of Irkalla to the sprawling Scrap Sea, all embellished with spectacular animations and gorgeous backdrops.


\n● Nuanced Combat System – Unleash Aletheia’s inner power, grow stronger, and engage in deep and varied combat, mastering a range of melee combos and ranged revolver attacks in uncompromising action.


\n● Riveting Narrative – Encounter a vibrant cast of characters and explore Canaan’s districts in an intertwining narrative filled with conspiracy-laden intrigue, NPCs, optional side quests, and choice-driven dialogue.


\n● Grow Your Skills – Gain experience and craft new abilities to tap into the mysterious power dwelling within Aletheia as you discover new areas, smash through secret paths and take on the Steam City’s toughest enemies.


\n● Shape Your Fate – Make decisions that will shape the fates of Aletheia and other characters you’ll meet along your journey.

\n © 2020 Metamorphosis Games LLC. All rights reserved. Gestalt: Steam & Cinder is a trademark owned by Metamorphosis Games LLC. Developed by Metamorphosis. Published by Sold Out Sales and Marketing Limited. All other copyrights or trademarks are the property of their respective owners and are being used under license.\n

554.99 1969-12-31 BR0 78 \N \N 2021-05-20 12:06:24.495-03 2021-05-20 12:06:24.546-03 50 Steel Division 2 - Reinforcement Pack #6 - Auto Deployment steel-division-2-reinforcement-pack-6-auto-deployment Deepen your Steel Division 2 experience with this free Reinforcement Pack, introducing the Auto Deployment mechanic for the turn-based strategic Army General mo \n \n \n \n Deepen your Steel Division 2 experience with this free Reinforcement Pack, introducing the Auto Deployment mechanic for the turn-based strategic Army General mode.

\nThe Auto Deployment significantly speeds up your deployment phase during a tactical battle, removing repetition, with the computer placing your units and defensive structures automatically. You can modify a unit’s location as you see fit, reposition bunkers or let the AI finish your deployment for you.

\nThe new mechanic uses the same algorithms a computer-controlled player uses in placing its units on the battlefield.

\nThe Auto Deployment mechanic comes as part of a free Reinforcement Pack, available to all owners of Steel Division 2.\n\n \n

\n Developed and published by Eugen Systems.\n

0.00 2020-03-02 BR0 34 \N \N 2021-05-20 12:04:23.016-03 2021-05-20 12:04:23.035-03 53 Ys VIII: Lacrimosa of DANA - HQ Texture Pack ys-viii-lacrimosa-of-dana-hq-texture-pack High-quality texture pack for Ys VIII: Lacrimosa of DANA\n\n\n \n \n © Nihon Falcom Corporation. All Rights Reserved. Licensed to an \n \n \n \n High-quality texture pack for Ys VIII: Lacrimosa of DANA\n\n\n \n

\n © Nihon Falcom Corporation. All Rights Reserved. Licensed to and published by NIS America, Inc.\n

0.00 2020-01-16 BR0 35 \N \N 2021-05-20 12:04:27.935-03 2021-05-20 12:04:30.292-03 63 Pillars of Eternity: Deadfire Pack pillars-of-eternity-deadfire-pack Please Note: The base-game, Pillars of Eternity, is required to play. In addition, the Deadfire Pack DLC is already included in Pillars of Eternity: Definitive Please Note: The base-game, Pillars of Eternity, is required to play. In addition, the Deadfire Pack DLC is already included in Pillars of Eternity: Definitive Edition

\nBringing the flavor of the Deadfire Archipelago to the Dyrwood, the Deadfire Pack adds four all-new, soulbound items for players to equip and level up as they play Pillars of Eternity, along with a bevy of pirate outfits and weapons, all inspired by the upcoming Pillars of Eternity II: Deadfire.\n

Included in this DLC:

Soulbound Items:
\n- Company Captain's Cap
\n- War Club of the Mataru
\n- One-Eyed Molina's Gold-Fingered Spike-Finger
\n- Belt of the Royal Deadfire Cannoneer
Other Unique Equipment:
\n- Pirate Outfits: Helmsman's Uniform, Deckhand's Uniform, Boatswain's Uniform
\n- Sabre of the Seas
\n- Fulvano's Blunderbuss\n

\nPlus a couple of "secret" items, too!\n\n \n 0.00 2017-11-14 BR0 61 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.403-03 76 Xenonauts 2 Demo xenonauts-2-demo This is the free public pre-alpha of Xenonauts 2 - a very early build of the game intended for gameplay and stability testing. This demo will NOT grant a copy o \n \n \n \n This is the free public pre-alpha of Xenonauts 2 - a very early build of the game intended for gameplay and stability testing. This demo will NOT grant a copy of the final game (it will be deleted once the game moves into the paid alpha stage.\n

\nXenonauts-2 is a strategic planetary defense simulator that puts you in charge of a clandestine military force attempting to protect the planet from extraterrestrial invasion. \n

\nIt is a hugely complex strategy / tactics game that gives you total control of your organisation all the way from the command staff in your base down to the troops on the battlefield, updating and expanding the classic X-Com formula into something deeper and more distinctive!\n\n

\n Copyright Goldhawk Interactive 2018\n

0.00 2018-10-31 BR0 51 \N \N 2021-05-20 12:04:30.458-03 2021-05-20 12:04:30.515-03 86 Megadimension Neptunia VIIR Free DLC Pack megadimension-neptunia-viir-free-dlc-pack Includes the following pieces of DLC:Megadimension Neptunia VIIR - 4 Goddesses Online Premium Weapon SetMegadimension Neptunia VIIR - Dengeki SetMegadimension N \n \n \n \n Includes the following pieces of DLC:

\n ©2018 IDEA FACTORY / COMPILE HEART All rights reserved. Neptunia is a trademark of IDEA FACTORY.\nLicensed to and published by Idea Factory International, Inc.\n

0.00 2018-10-21 BR0 39 \N \N 2021-05-20 12:04:30.569-03 2021-05-20 12:04:30.628-03 94 PC Building Simulator - Good Company Case pc-building-simulator-good-company-case Build your dream PC in this specially designed 'Good Company' themed NZXT H700i case that was created to celebrate the corporate management simulator - Good Com \n \n \n \n Build your dream PC in this specially designed 'Good Company' themed NZXT H700i case that was created to celebrate the corporate management simulator - Good Company by Chasing Carrots.

NZXT H700i - Good Company

(Unlocks in Career mode towards the end of level 27 but in Free Build instantly)\n

0.00 2019-04-28 BR0 43 \N \N 2021-05-20 12:04:30.681-03 2021-05-20 12:04:30.717-03 106 Pharaoh: A New Era pharaoh-a-new-era Immerse yourself in the history of Ancient Egypt with 50 missions and over 100 gameplay hours in Pharaoh: A New Era, a remake of Pharaoh (and the expansion Cleo

\nImmerse yourself in the history of Ancient Egypt with 50 missions and over 100 gameplay hours in Pharaoh: A New Era, a remake of Pharaoh (and the expansion Cleopatra: Queen of the Nile), one of the best city builders from the golden age of Sierra Entertainment. Stone by stone, build your city and manage all aspects of its development to ensure it prospers and makes you a powerful and revered Pharaoh.\n

ONCE UPON A TIME IN ANCIENT EGIPT

\nDevelop your city by cultivating the fertile lands along the banks of the Nile valley. Erect the iconic monuments of Ancient Egypt, including the pyramids, the Sphinx and the Lighthouse of Alexandria. Build temples and mausoleums to help manage all aspects of your city's health and culture as well as the predominant polytheistic religion of the time. \n

\nEnsure your city is prosperous enough to deal with economic or political crises, or even plundering by enemies. A Pharaoh takes care of its people and does whatever it can to earn the favour of the gods. \n

BUILD 4000 YEARS OF HISTORY

\nPharaoh: A New Era celebrates 20 years since the release of the famous franchise with a complete remake, including more than 50 playable missions and over 100 hours of gameplay. Rediscover the map and mission editor mode that allows you to shape your very own Egypt over thousands of years. \n

\nThe "Campaign" mode teaches you the game basics while allowing you to experience a unique story in the heart of Ancient Egypt and explore all aspects of life in a thriving city. \n

\nYou have everything at your disposal to build an entire city and manage all its fundamental elements to ensure it flourishes: the economy, internal and external trade, culture, health, agriculture, education, etc. To help you monitor your progress, various indicators show you the overall well-being of your city and its residents.\n

MODERNIZED GRAPHICS AND GAMEPLAY MECHANICS

\nThe journey back in time is really brought to life with this Ultra HD remake, which upgrades the gameplay mechanics to modern standards and completely redesigns the captivating soundtrack and gorgeous isometric 2D graphics.\n

FEATURES

\n● Rediscover the classic city builder Pharaoh and its expansion, Cleopatra: Queen of the Nile, in an all-new remake \n
\n● Explore Ancient Egypt and its 4,000 years of history across 50 missions \n
\n● Marvel at Ancient Egypt's most iconic and beautiful monuments with completely overhauled Ultra HD graphics\n
\n● Erect the Egypt of your dreams with the map editor mode\n

\n ©2020 Dotemu, all rights reserved. Developed by Triskell Interactive.\n

554.99 1969-12-31 BR0 73 \N \N 2021-05-20 12:06:20.967-03 2021-05-20 12:06:24.218-03 114 Against the Storm against-the-storm Rebuild to last!\nAgainst the Storm is a roguelite city builder set in a fantasy world tormented by the everlasting rain. Settle the unknown wilds to discover an Rebuild to last!

\nAgainst the Storm is a roguelite city builder set in a fantasy world tormented by the everlasting rain. Settle the unknown wilds to discover and rebuild the ruins of a long-forgotten civilization. Develop technologies that will help your citizens tackle destructive storms and extend the frontier of your civilization.\n

\nA unique combination of city building and roguelite genres makes each playthrough a unique adventure. Every reclaimed ruin increases your buildings’ collection. Optimize your set and test different strategies with each run to thrive in a world where it never stops to rain!\n

Main Features

City builder...

Build and nurture your settlement in the unforgiving wilds. Take control of a growing population of humans, beavers, and lizardfolk - the last sentient races that opposed neverending storms. Manage their living conditions, diverse eating habits, and utilize their unique proficiencies. Gather scarce resources and process them into valuable goods, the most essential of them being hearth-keeping fuel.\n

...meets roguelite

Start every playthrough with different conditions and toolsets that guarantee unique experiences on procedurally generated maps. Randomly assigned long-term goals will tempt you with visions of great rewards and motivate you to experiment with new strategies. Expand your meta hub and the collection of buildings by preserving valuable relics of your predecessors.\n


Reclaim and rebuild

The world is filled with ruins of a long lost civilization that vanished in unknown circumstances. Who were they? Was it the rain that wiped them out or some greater threat that lurks in the uncharted lands? During every settling expedition, you can reclaim and rebuild what was once lost to unlock new technologies that will help you avoid the tragic fate of previous inhabitants.

A world tormented by the storm

The rain is your ally and the greatest enemy. It cycles in three seasons requiring you to stay flexible and adapt to changing conditions. In Drizzle, the season of regrowth, natural resources replenish themselves, and it’s time for construction and planting crops. The Clearance is the season of harvest, expansion, and preparations for the last, most unforgiving season of them all. A true test of your city’s strength comes with the Storm when bolts of lightning tear the sky, nothing grows and resources are scarce.

Community-driven development

We aim to constantly provide you with new opportunities and infrastructure to influence the making of the game. Our goal is to incorporate your feedback into development cycles and spark a genuine belief of contributing to the world of Against the Storm.\n\n\n \n 554.99 1969-12-31 BR0 96 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.22-03 116 Zombies Ate My Neighbors and Ghoul Patrol zombies-ate-my-neighbors-and-ghoul-patrol-bundle The cult classic Zombies Ate My Neighbors and its sequel make their long awaited return in Zombies Ate My Neighbors and Ghoul Patrol! Play these classics from t \n \n \n \n The cult classic Zombies Ate My Neighbors and its sequel make their long awaited return in Zombies Ate My Neighbors and Ghoul Patrol! Play these classics from the golden age of 16-bit gaming with new enhancements and never before seen museum features.\n

Zombies Ate My Neighbors

\nHey, where's that scary music coming from? Yikes! It's Zombies Ate My Neighbors, where you appear in every demented horror flick ever to make you hurl ju-jubes.\n

\nWhat are Zeke and Julie, our two wholesome teenage stars doing in a 16-bit game like this?! Trying to save the nice neighbors, cheerleaders and babies from a fate worse than polyester!\n

\nWho could put this SLICE of suburbia in such goose-pimply hysteria? Zombies, relentless Chainsaw Maniacs, Mummies, Evil Dolls that just won't die, Lizard Men, Blobs, Vampires, Giant Ants, Martians and more.\n

\nWill these crazy kids survive the night? Find your way through 55 horror-filled levels like a grocery store gone bad, a shopping mall awry, a mysterious island and your own back yard. Don't miss ""Weird Kids on the Block"", ""Mars Needs Cheerleaders"" and ""Dances With Werewolves"".\n

\nYou can fend off the freaks with a virtual candy counter of weapons like uzi squirt guns, exploding soda pop, bazookas, weed wackers and ancient artifacts. Also grab power ups-o-rama like secret potions and bobo clown decoys. Does this game ever end?!\n

Ghoul Patrol

\nZeke and Julie, our intrepid teenagers, visit the Ghosts and Ghouls exhibit at the city library, where they find an old treasure chest containing an ancient spirit book. Naturally, they cannot resist reading it. Suddenly, a horrific snaggle-toothed spirit emerges.\n

\nNow, this snarling phantom and his dastardly minions are infesting Metropolis and slithering their way into the history books, where they plan to rewrite history with their spooky ways. Only you have the power to go back in time to de-spook an encyclopedia of zombified historic dudes.\n

\nTerminate, with prejudice, using crossbows, ping-pong ball machine guns, Martian ""Heatseeker"" guns, and more.\n

\nVaporize garbage can ghosts and ninja spirits, rescue bug-eyed librarians and wigged-out pirates, dodge flying books and adolescent-eating plants!\n

\nOnly our two heroes have the power to get the mighty beastly spirit back into his book and stop the madness. Ghoul Patrol to the rescue!\n

NEW FEATURES

\n © 1993, 1994, 2021 LUCASFILM LTD\n

28.99 2021-06-28 BR0 66 \N \N 2021-05-20 12:06:24.271-03 2021-05-20 12:06:24.33-03 51 Brigador Modkit & Map Editor brigador-modkit-map-editor Welcome to the Brigador Modkit!Developer map editor for making custom levels - ✓Fully customizable game data - ✓Sprite packer and point data generator for makin \n \n \n \n Welcome to the Brigador Modkit!
0.00 2019-07-28 BR0 36 \N \N 2021-05-20 12:04:23.019-03 2021-05-20 12:04:23.036-03 52 The Legend of Heroes: Trails of Cold Steel III - Faculty Swimsuit Set the-legend-of-heroes-trails-of-cold-steel-iii-faculty-swimsuit-set A set of swimsuits for Juna, Altina, and Musse that look just like Aurelia's.\nFaculty Swimsuit - Juna x1Faculty Swimsuit - Altina x1Faculty Swimsuit - Musse x1\n \n \n \n \n A set of swimsuits for Juna, Altina, and Musse that look just like Aurelia's.\n


\n*These items can be claimed from the DLC tab on the Item page. After obtaining the items, they can be equipped from the Costume page on the Camp Menu.\n\n \n

\n © Nihon Falcom Corporation. All Rights Reserved. Licensed to and published by NIS America, Inc.\n

0.00 2020-03-22 BR0 35 \N \N 2021-05-20 12:04:25.69-03 2021-05-20 12:04:30.291-03 62 Shadow Warrior Classic Complete shadow-warrior-complete Lo Wang. The very name strikes fear in fortune cookie-eating Mafia men and small children everywhere. He is the reason most ninja wannabees have sold off their \n \n \n \n Lo Wang. The very name strikes fear in fortune cookie-eating Mafia men and small children everywhere. He is the reason most ninja wannabees have sold off their combat sandals to the local pawn shop. Lo Wang is Shadow Warrior. #1 Assassin. #1 Yakuza abuser. #1 Freak fragger. #1 Mutant mutilator. #1 Reason to be scared of the dark. Enter the Land of the Rising Sun and spread ninja charisma like napalm for there are undead sumos to be uzied, samurai to be shurikened, and bulldozers to be boarded. Don’t forget to goose the geishas and make sure your dinghy isn’t hanging out...\n

\nFrom the creators of Duke Nukem 3D, comes the ever-explosive, forever controversial Shadow Warrior, a first-person shooter that takes the Build engine to its extreme limits. Offering a destructible environment with a bevy of weapons--ranging from razor-sharp katanas, 4-barrel shotguns, and even your own fists--Shadow Warrior is sure to satisfy the hunger for some Lo Wang and not leave you hungry an hour later.\n\n 0.00 1997-05-12 BR0 26 \N \N 2021-05-20 12:04:30.34-03 2021-05-20 12:04:30.4-03 72 Phantom Doctrine - Halloween Scare Tactics phantom-doctrine-halloween-scare-tactics Phantom Doctrine - Halloween Scare Tactics includes a bunch of fun new Halloween themed content, including spooky face masks, new environmental items, and a coo \n \n \n \n Phantom Doctrine - Halloween Scare Tactics includes a bunch of fun new Halloween themed content, including spooky face masks, new environmental items, and a cool light up Pumpkin Head that you can equip and wear during missions.\n\n \n 0.00 2018-10-28 BR0 48 \N \N 2021-05-20 12:04:30.449-03 2021-05-20 12:04:30.511-03 82 Kingdom Come: Deliverance - HD Texture Pack kingdom-come-deliverance-hd-texture-pack Please be sure you have version 1.4 of the game and at least 6GB of VRAM on your graphics card. You can always turn off the HD textures from the game menu.\n\nEnj \n \n \n \n Please be sure you have version 1.4 of the game and at least 6GB of VRAM on your graphics card. You can always turn off the HD textures from the game menu.\n

\nEnjoy the Kingdom Come: Deliverance with HD textures now!\n\n \n

\n © 2017 Warhorse Studios s.r.o., Kingdom Come: Deliverance® is trademark of Warhorse Studios s.r.o. All rights reserved.\n

0.00 2018-03-29 BR0 42 \N \N 2021-05-20 12:04:30.561-03 2021-05-20 12:04:30.624-03 108 Unbound: Worlds Apart unbound-worlds-apart Unbound is an atmospheric 2D Puzzle-Platformer where the main character, Soli, can conjure magic portals to travel between different realities in order to learn Unbound is an atmospheric 2D Puzzle-Platformer where the main character, Soli, can conjure magic portals to travel between different realities in order to learn more about the catastrophe that ravaged his world. Inside certain portals, the physical properties of the character or world elements can change, offering new gameplay possibilities.\n


Unbound’s artistic approach can be summarized as a dark fairy tale presented in a cartoonish style, with the purpose to give the game experience a fresh look and feel. Curiosity and exploration will have an impact on the overall atmosphere.
\n \n

Key features:

\n \n

Demo available here!

554.99 1969-12-31 BR0 70 \N \N 2021-05-20 12:06:24.156-03 2021-05-20 12:06:24.22-03 55 PC Building Simulator - GOG Galaxy Edition Case pc-building-simulator-galaxy-edition-case Build your dream PC in this specially designed GOG 'Galaxy Edition' themed NZXT H700i case that was created to celebrate the DRM-free launch of PC Building Simu \n \n \n \n Build your dream PC in this specially designed GOG 'Galaxy Edition' themed NZXT H700i case that was created to celebrate the DRM-free launch of PC Building Simulator on GOG.com.\n


NZXT H700i – GOG Galaxy Edition
\n(Unlocks in Career mode towards the end of level 27 but in Free Build instantly)\n\n \n 0.00 2019-06-27 BR0 43 \N \N 2021-05-20 12:04:27.935-03 2021-05-20 12:04:30.292-03 64 The Surge 2 - JCPD Gear Pack the-surge-2-jcpd-gear-pack Expand your The Surge 2 experience with the "BORAX-I Quantum Mace", available exclusively with the Season Pass.\n\nExpand your The Surge 2 experience with the JCP

Expand your The Surge 2 experience with the "BORAX-I Quantum Mace", available exclusively with the Season Pass.


\n\nExpand your The Surge 2 experience with the JCPD Gear Pack and get access to 1 brand new armor set and 4 new unique implants. Unleash fury upon your enemies with the official JCPD Team Zola armor thanks to its stamina-oriented set bonuses. Find the enemies that equip the set, cut the various parts off and equip them for yourself in your fight for Jericho City!\n

\nThe JCPD Gear Pack includes:\n

\n ©2019 Deck13 and Focus Home Interactive. The Surge and its logo are registered trademarks of Focus Home Interactive. Deck13 and its logos are trademarks or registered trademarks of Deck13. Focus Home Interactive and its logos are trademarks or registered trademarks of Focus Home Interactive. All other trademarks, registered trademarks and their logos belong to their respective owners. All rights reserved.\n

0.00 2019-11-25 BR0 47 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.4-03 110 Intravenous intravenous A LOVE LETTER TO EARLY SPLINTER CELL GAMES\nYou just entered the warehouse through the vent shaft as you hear voices from outside. They know you’re here. Someone

A LOVE LETTER TO EARLY SPLINTER CELL GAMES


\nYou just entered the warehouse through the vent shaft as you hear voices from outside. They know you’re here. Someone must have tipped them off. \n

\nYou continue to stay in the shadows. You shoot out lights, flip off circuit breakers and lockpick doors. You are a silent assassin. \n

\nYou distract the guards by throwing bottles or imitating their wives voices. One by one you pick their lights out. \n



\nFuck. You’ve been compromised. You shoot out the next door lock and go in guns-blazing. In an adrenaline filled shootout you eliminate your target and barely manage to escape. Well done! \n



\nEnter the world of Intravenous as Steve Robbins - a man set out for revenge after losing his brother to low-life junkies. Delve deep into the criminal world under the guise of darkness or go armed to the teeth, guns-blazing, and padded with armor.\n

554.99 1969-12-31 BR0 88 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.22-03 119 Strategic Mind: Fight for Freedom strategic-mind-fight-for-freedom Strategic Mind: Fight for Freedom is a history-driven turn-based strategy set in WW2. You will fight across Europe, Africa, and Burma. Will you spend the time o \n \n \n \n Strategic Mind: Fight for Freedom is a history-driven turn-based strategy set in WW2. You will fight across Europe, Africa, and Burma. Will you spend the time on proper reconnaissance before the attack, or rely on aggressive tactics? Will you use night time or rain to your advantage, sneaking up on enemy positions, or just complain that the weather was unfavorable? Will you help the locals or leave them to their fate? It is up to you to save the stronghold of Democracy and Freedom in Europe from the totalitarian oppression of the Axis powers.\n

WITNESS WW2 FROM TWO DIFFERENT PERSPECTIVES

The game has 2 campaigns: the British one features fully historical battles, while the US one has historical operations up to the defeat of Germany and also features a number of alternate history battles against the USSR afterward. It is created with great care and attention to historical detail by a team that is passionate about WW2 history.\n




Lead the British Army as Sir Harold Alexander
\nGo all the way from Norway landings to the liberation of northern Italy. Command your troops in bitter defeats and in the moments of triumph. Take charge of the Dunkirk evacuation. Fight the Japanese in Burma, and Italians in Africa. Turn the tide of war against Germany at El Alamein. Finish the war in North Africa and lead the victorious landing in Italy in 1943. \n



Lead the US Army as General Dwight Eisenhower
\nGo all the way from D-Day landings to the fall of Berlin. Ensure the success of Operation Market Garden, repel the last German offensive at the Ardennes, and strike the killing blow into the heart of the Reich. Then move into the alternate history of 1946 and face your strongest adversary yet - the Red Army. Command US and Allied forces and minimize your losses. Employ the units of all Allied and liberated countries to achieve maximum synergy. Exploit all available means to bring Freedom and Democracy to Eastern Europe.\n

HISTORICAL OPERATIONS AND “WHAT IF” SCENARIOS

Take part in historic events
\nMake sure all of your troops manage to escape the Dunkirk trap. Show the Italian troops they should choose their allies more carefully by conducting operation Compass flawlessly. Change the course of the entire war in Africa by defeating Rommel in the Second Battle of El-Alamein. Go back to Europe by landing in Italy. Commence the D-Day landing and fight your way to Berlin to put an end to the Nazi regime and its crimes.\n



Sate your curiosity of alternate history flow
\nWhat would have happened if the Allies had to go to war against USSR in 1946, following the ideas of Operation Unthinkable? Now you can take the lead and explore such possibilities. Free the Eastern European countries from Communist rule!

MEET THE TOP BRASS

The gameplay is plot-driven and features many historical personalities such as Winston Churchill, Franklin Delano Roosevelt, Harold Alexander, Bernard Law Montgomery, Dwight D. Eisenhower, George S. Patton, and others.

GAMEPLAY FEATURES

Immerse yourself in history
\nEnjoy the narrative-driven gameplay with lots of dialogues between the historical characters throughout each operation. The dialogues are affected by your actions. Dive deeper into the events of 1939-1946 by watching plot-driven cinematics before and after every operation.\n

Manage your Army
\nChoose the composition of your forces. Acquire new units, upgrade or dismiss the outdated ones. There are 10 unit classes available in the game, with lots of models in each.\n



Upgrade your units to newer models
\nGet new unit models as soon as they become available. As the campaign progresses you gain access to more advanced units at historically accurate periods.\n



Choose the best equipment for each operation
\nMake sure that your forces have all the necessary tools for the upcoming battle. All units can employ various equipment and transport.\n



Train your troops and choose new abilities for them
\nOversee your forces getting combat experience and choose news skills for them that best suit your strategy and tactics.\n

Assign heroes
\nAssign heroes to the units of your choosing and get access to special skills. All heroes are real historical personalities. \n

Develop your headquarters’ skills and employ advanced combat tactics
\nLearn new HQ skills before every operation and use your newly-acquired knowledge to make a difference on the battlefield. \n



Use the enemy`s most advanced units against him
\nCapture the best enemy units and add them to your forces. Then crash the enemy using his own strength. \n



Enjoy realistic 3D graphics
\nStudy the battle map and take advantage of 3D graphics, featuring volumetric terrain and physically-simulated movement of units. All units are very detailed representations of real models. \n

WELCOME THE SUCCESSOR

Strategic Mind: Fight for Freedom is the fourth installment in the Strategic Mind line of games, featuring both the United Kingdom and the United States in WW2.\n

\nPrevious titles in the series:\n


57.99 1969-12-31 BR0 90 \N \N 2021-05-20 12:06:24.273-03 2021-05-20 12:06:24.329-03 127 Astria Ascending astria-ascending Explore the vast and beautiful world of Orcanon\n\nVisit five different cities populated by unique creatures and solve more than 20 dangerous dungeons. With over Explore the vast and beautiful world of Orcanon
\n\nVisit five different cities populated by unique creatures and solve more than 20 dangerous dungeons. With over 50 hours of gameplay and a range of fun mini-games - including shoot ‘em ups, an original fantasy-themed card game and challenging environmental puzzles.

A grand tale of fate and sacrifice
\n\nImmerse yourself in a fascinating narrative rife with betrayal, sacrifice and terrors. A story based around adult characters, Astria Ascending offers a more mature experience and extensive dialog.

A rewarding turn-based combat system
\n\nFight over 200 different monsters in captivating turn-based combat. Collect and summon legendary beasts into the fight and build up your power to wield legendary Cosmo Breaks.

Meet an unforgettable cast of characters
\n\nPick from eight customisable player characters spanning a range of fantastical races and skills, and assemble a heroic team that must sacrifice everything to save the world. With 20 classes to pick from and an array of unique skills to command, their fates are doomed, but the world is not.

A hand-drawn adventure crafted with skill and passion
\n\nFrom a team featuring developers from Final Fantasy, Nier Automata and Bravely Default, Astria Ascending includes full voice acting in Japanese and English, a traditionally animated fully hand-drawn 2D world and a dynamic weather system.
554.99 1969-12-31 BR0 76 \N \N 2021-05-20 12:06:24.381-03 2021-05-20 12:06:24.437-03 54 The Witcher 3: Wild Hunt - Free DLC Program the-witcher-3-wild-hunt-free-dlc-program We love updates constantly improving the experience, and we know all gamers like to receive free content that gives you more than you initially paid for. On May \n \n \n \n \nWe love updates constantly improving the experience, and we know all gamers like to receive free content that gives you more than you initially paid for. On May 19th first bundle of DLCs (2 of the planned 16) will arrive: the Temerian Armor Set (horse armor included) and a Beard and Hairstyle Set for Geralt, the game’s protagonist. Rest of the DLCs will be published in similar bundles on weekly basis. Gamers are entitled to the free DLC regardless of obtaining the game via pre-order or after launch.\n\n

\n The Witcher 3: Wild Hunt © 2014 CD Projekt S.A. All Rights Reserved.\n

0.00 2015-05-18 BR0 1 \N \N 2021-05-20 12:04:27.935-03 2021-05-20 12:04:30.292-03 65 Willy Morgan and the Curse of Bone Town Demo willy-morgan-demo Willy Morgan is a third-person adventure game, set in a fantasy pirate-themed world with a modern touch. Combining the traditional point-and-click genre gamepla \n \n \n \n Willy Morgan is a third-person adventure game, set in a fantasy pirate-themed world with a modern touch. Combining the traditional point-and-click genre gameplay with a unique cartoon 3D graphics, Willy Morgan has the dreamy atmosphere, the humor and the freedom to explore typical of timeless classics such as Monkey Island. \n



\nThe story unfolds through funny dialogues and challenging puzzles. \n
\nKeen powers of observation, intuition and imagination are going to be needed in order to succeed and ultimately find the truth. \n






\n10 years have passed since the mysterious disappearance of Willy's father, the famous archaeologist Henry Morgan. One day, the postman delivers him a strange letter:\n

“If you receive this letter, it means that something went wrong \n
\nand it’s up to you to finish what I started. Go as fast as you can \n
\nto Bone Town, room 09, but don't trust anyone...”


\n © 2020 VLG Publishing. All Rights Reserved.\n

0.00 2020-08-10 BR0 46 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.4-03 73 The Textorcist: The Story of Ray Bibbia Demo the-textorcist-the-story-of-ray-bibbia-demo The full version of The Textorcist: The Story of Ray Bibbia is available on GOG.com. You can purchase it here\n\nGet ready for an electrifying mix between a bulle
The full version of The Textorcist: The Story of Ray Bibbia is available on GOG.com. You can purchase it here

\n\nGet ready for an electrifying mix between a bullet hell and a typing game! Dodge bullets while typing exorcisms at the very same time: turn on both sides of your brain and jump into the adventure of Ray Bibbia, a private exorcist who's going to face the threats of a demonic outbreak and deal with his dark and sinful past at the same time! A city in decay, streets filled with thugs, crime and censorship and only one man to stop it all. Groundbreaking gameplay, exorcists, demons, metal singers, pimps, the Pope, drama, bad jokes and tons of hardcore action-filled boss battles for the first type ‘em up game ever realized.\n

A TYPING EXPERIENCE: In order to defeat the forces of evil, learn how to type your exorcisms with your keyboard or with your joypad WHILE dodging tons of bullets, dealing with puddles of barf, defusing bombs, singing at the mic of a metal show and more during intense Boss Battles: easier said than done. Hold your Bible tight, both hands needed!\n

THE CITY: Rome is the theatre of our adventure, discover new locations and fight in one of the biggest metropolis in history, home of some of the craziest characters and enemies! Behind a demonic outbreak, unearthly forces are scheming to seize power and subvert the order of the the biggest religious organization in Rome: The Holy Church has reached unlimited powers over the streets of the city, but how can our protagonist be sure of their good deeds? Unravel the demonic plot aimed to overturn the order in the city and put together the pieces of the dark past behind Ray Bibbia!\n

THE CAST: From Goth maids to gun-crazed gangsters and the Pope himself, Ray will get his hands dirty by exploring a great variety of locations to solve a mystery that’s going to grow heavier as it takes shape. Who’s gonna turn out to be a friend and who’s gonna stab Ray behind his back?\n

\nAre you a fast typer? Can you read and spell Latin while you dodge bullets? THIS is the game you're looking for! Real exorcisms, English, Latin, and more! Avoid making mistakes and reach the highest combo! Compete with your friends by spelling the “perfect exorcism” and compare with their scores on online leaderboards!\n

Features:\n
\n- An intense storytelling\n
\n- Tons of bullets\n
\n- Lots of typing\n
\n- 10 Boss fights\n
\n- Challenging twisted typing mechanics for every boss\n
\n- Type even to open a door\n
\n- Type on a Holyvetti computer\n
\n- Show it off with online leaderboards\n
\n- Play with the keyboard for a typing experience or with a gamepad for a rhythm experience\n
\n- Original Soundtrack composed by GosT\n
\n- Some more Bullets\n

\nAll these features and even more, if you're a fan of shooters, a masochist, a wannabe exorcist, or you just need some black comedy in your life, don't miss The Texorcist!\n\n\n \n 0.00 2019-02-13 BR0 62 \N \N 2021-05-20 12:04:30.449-03 2021-05-20 12:04:30.513-03 84 Darkest Dungeon - Musketeer darkest-dungeon-musketeer "I ain't afraid to love a man. I ain't afraid to shoot him either."\n- Annie Oakley\n\nA celebrated competitive sharpshooter, The Musketeer arrives in the Hamlet, \n \n \n \n "I ain't afraid to love a man. I ain't afraid to shoot him either."
\n- Annie Oakley\n

\nA celebrated competitive sharpshooter, The Musketeer arrives in the Hamlet, determined to prove her skill after a disappointing tournament. She aims to become a legend in hunting circles by putting her skills to the test against the terrifying beasts and unnameable abominations that roam the Ancestor's Estate!\n

\nFeatures:
\n- New hero class: The Musketeer (mechanically identical to Arbalest)
\n- Musketeer class-specific trinkets.\n

\nOnce exclusive to a select group of our Kickstarter backers, the Musketeer is now FREE DLC for all Darkest Dungeon® owners! She is a complete, studio quality, re-skin of the Arbalest class. The Musketeer has access to her own set of class trinkets and will be available in the Stagecoach like the other Darkest Dungeon® heroes!\n\n \n

\n Copyright 2015-2018 Red Hook Studios Inc. "Darkest Dungeon" is a registered trademark of Red Hook Studios Inc. All rights reserved.\n

0.00 2018-06-18 BR0 60 \N \N 2021-05-20 12:04:30.566-03 2021-05-20 12:04:30.63-03 100 BROK The InvestiGator brok-the-investigator BROK The InvestiGator - prologue is available here.\nNarrative-driven adventure game that blends action and investigation in never-before-seen ways. Will you use

BROK The InvestiGator - prologue is available here.

\nNarrative-driven adventure game that blends action and investigation in never-before-seen ways. Will you use your brain... or your brawn?


\nIn a futuristic "light cyberpunk" world where animals have replaced humans, privileged citizens live under a dome protected from the ambient pollution while others struggle to make a living outside.

\nBrok, a private detective and former boxer, lives with Graff, the son of his deceased wife. Although he could never elucidate her accident, recent events may shed some light on an even more tragic outcome... one that may be linked to their own existence.

\nWill they be able to withstand the threats of this corrupted world and face their own destiny? \n

FEATURES


\nA deep and emotional narrative-rich experience filled with characters reminiscent of classic 80s/90s cartoons.
\nThe first game to combine a "Classic Adventure" with "Beat'em up" and RPG elements!\n

\n COWCAT Games, 2020. All rights reserved.\n

554.99 1969-12-31 BR0 83 \N \N 2021-05-20 12:06:18.293-03 2021-05-20 12:06:18.347-03 56 Pathfinder: Kingmaker - Arcane Unleashed pathfinder-kingmaker-arcane-unleashed There's no such thing as too much magic!\nThis free DLC adds the following new spells to the game:\nCreate PitSpiked PitAcid PitHungry PitRift of RuinBattering Bl \n \n \n \n \n\n\nThere's no such thing as too much magic!

\nThis free DLC adds the following new spells to the game:\n
  1. Create Pit
  2. Spiked Pit
  3. Acid Pit
  4. Hungry Pit
  5. Rift of Ruin
  6. Battering Blast

\nAn arcane scroll merchant will appear in your capital. The quantity and caster level of available scrolls depends on how high your "Arcane" kingdom stat is.

\nFurthermore, if you like turning into giant dragons as much as we do, you'll definitely enjoy the fresh, improved models for chromatic and metallic types of these formidable creatures.

\nFinally, on a more serious note, the last part of this DLC is a new pet. One of our players and our friend, known to the community as Stratagemini, lost his beloved cat Tiger just weeks before the launch of our game. Stratagemini has been with us since the earliest days of development, supporting us every step of the way, providing extensive and enlightening feedback in the alpha, and helping to shape this community into what it is today. As a token of our eternal gratitude, we've recreated Tiger in the game so that he may roam with his human friend once more - if only in the Stolen Lands.\n\n \n

\n Pathfinder and Kingmaker are trademarks and copyrights owned exclusively by Paizo Inc. and used under license. Owlcat Games is a trademark of OWLCAT GAMES LTD. My.com is a trademark of My.com B.V. 2018 published by Deep Silver, a division of Koch Media GmbH, Austria. Deep Silver and its respective logos are trademarks of Koch Media GmbH. This product is based on tools and technologies ©2018, My.com B.V., Owlcat Games. Certain tools and technology also used in this product are © Unity Technologies, 2018, © 2006–2018 Audiokinetic Inc., © 2008-2018 Syrinscape Pty Ltd.\n

0.00 2019-03-19 BR0 41 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.297-03 70 Tyrian 2000 tyrian-2000 And you thought being a Terraforming Engineer would be a quiet life compared to being a Space Marine? \nBlasting rocks to make way for new settlements on Tyrian \n \n \n \n And you thought being a Terraforming Engineer would be a quiet life compared to being a Space Marine? \nBlasting rocks to make way for new settlements on Tyrian seemed like a quiet life, but your long-time Huzundra friend is now dead - bless his lizard hide. Murdered! And obviously Microsol, the Terraforming company wants you dead too!\nIt's that huge new rock formation you and Buce uncovered - it's Gravitium, and it's priceless. Tyrian is the only planet where it exists in commercial quantities, and Microsol are determined to control it. You can expect them to throw all their resources against you - and they won't pull any punches.\n\n\n 0.00 1999-11-29 BR0 55 \N \N 2021-05-20 12:04:30.35-03 2021-05-20 12:04:30.405-03 81 Vagrus - The Riven Realms: Prologue vagrus-the-riven-realms-prologue The full version of Vagrus - The Riven Realms is available on GOG.com. You can buy it here\nVagrus - The Riven Realms: Prologue is an early Demo to Vagrus - The
The full version of Vagrus - The Riven Realms is available on GOG.com. You can buy it here



\nVagrus - The Riven Realms: Prologue is an early Demo to Vagrus - The Riven Realms, a roleplaying game with a narrative focus, open-world exploration, and strong elements of strategy. The player takes the role of a vagrus - a caravan leader who strives to survive in a strange and dangerous dark fantasy world by leading a traveling company on all kinds of ventures.

\nVagrus is currently in development (in late Alpha) but it already has over fifty hours of playable content. The game is coming to GOG.com in the form of Game in Development in the near future.

\nThis Demo showcases the beginning sections of the game - both from the more narrative-driven introductory part and from the open-world main campaign.\n


\nA vast realm is yours to explore, filled with unique locations, strange factions, and a colorful cast of characters. In order to punish the Empire for its sins, the Elder Gods unleashed their power a thousand years ago that ended up devastating the realms. The continent is now a wasteland, riddled with arcane anomalies, swarming with twisted monsters, and haunted by roaming undead even after long centuries of rebuilding.\n


\nA large selection of stories make up the game’s narrative in the form of events and quests. The choices you make in these often affect your companions and the world around you. Pick your background from trader, mercenary, or explorer; work for factions, follow rumors and trading opportunities; acquire wealth, gain fame, and discover hidden knowledge.\n


\nEngage in turn-based, tactical combat that involves your companions and a large variety of enemies, both humanoid and monstrous. Use a wide range of character skills as well as your own leadership-related abilities to succeed. Positioning and support skills are of paramount importance in these challenging engagements.\n


\nJourneys have to be planned and prepared for carefully, lest they end in disaster. Manage your supplies, morale, and your crew’s vigor effectively to survive. Haul cargo and valuables across the wasteland or take it from others. Your crew of workers, fighters, scouts, and slaves have to be managed well to optimize their effectiveness.\n


\nRecruit from a wide variety of companions to have them serve in versatile caravan roles, such as scoutmaster, guard captain, treasure hunter, or beast handler. Each companion comes with unique combat skills, background stories, and personal quest lines that can upgrade them further when you complete them.\n\n\n \n

\n 2019 Lost Pilgrims Studio\n

0.00 2020-05-26 BR0 59 \N \N 2021-05-20 12:04:30.461-03 2021-05-20 12:04:30.53-03 91 The Messenger: Picnic Panic the-messenger-picnic-panic The Messenger's epic story continues on in a summer vacation DLC full of tropical action! On Voodkin Island, the demon Barma’thazël captured helpless little cre \n \n \n \n The Messenger's epic story continues on in a summer vacation DLC full of tropical action! On Voodkin Island, the demon Barma’thazël captured helpless little creatures to use them in his dark rituals. Only the heroic Messenger can save them now in a vacation-meets-rescue-mission adventure!\n\n

\n Copyright © 2017-2018 Sabotage Studio Inc.\n

0.00 2019-07-10 BR0 26 \N \N 2021-05-20 12:04:30.595-03 2021-05-20 12:04:30.653-03 136 Resort resort A comet is on course to obliterate the small town of Laburnum Creek. Renowned writer Laura Tanner visits the former health resort to interview several inhabitan \n \n \n \n A comet is on course to obliterate the small town of Laburnum Creek. Renowned writer Laura Tanner visits the former health resort to interview several inhabitants who are refusing to leave. But there’s something rotten at the heart of this picturesque town. Curious characters and surreal encounters await Laura in an enigmatic journey between dreams and reality. Will Laburnum Creek cast its spell over her too? Or will she jeopardize everything to uncover the truth?\n

\nRESORT is an interactive mystery short story about repressed trauma and buried secrets. As you guide the protagonist through an intriguing tale of personal discovery, your choices will literally transform Laura’s world.

Features

554.99 1969-12-31 BR0 80 \N \N 2021-05-20 12:06:24.489-03 2021-05-20 12:06:24.546-03 57 Craft the World - Abandoned Mines craft-the-world-abandoned-mines The “Abandoned Mines” DLC will add new underground structures – abandoned mines – to all worlds.\nLong ago, dwarves – searching for ore at the cores of many worl \n \n \n \n The “Abandoned Mines” DLC will add new underground structures – abandoned mines – to all worlds.

\nLong ago, dwarves – searching for ore at the cores of many worlds – built mineshafts wherever they found coal and iron, but for an unknown reason those mines now lay empty, the dwarves left them forever.

\nUpon discovering an abandoned mine, you may take everything you find there. In addition, mineshafts will also have some unique items.\n\n \n 0.00 2019-06-24 BR0 50 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.294-03 69 Scythe: Digital Edition - Soundtrack scythe-digital-edition-soundtrack The original score for Scythe: Digital Edition, composed by Damian Czajka, Michał Skrzypczyński and Patryk Scelina, is inspired by Central and Eastern European \n \n \n \n The original score for Scythe: Digital Edition, composed by Damian Czajka, Michał Skrzypczyński and Patryk Scelina, is inspired by Central and Eastern European cultures portrayed through the fictional factions of the game.\n

\nThis free DLC contains all 16 tracks and will be updated as new tunes are added to the game.\n
  1. Europa 1920 (main theme)
  2. Anna & Wojtek (Polania opening)
  3. Camaraderie (Polania at war)
  4. Bjorn & Mox (Nordic opening)
  5. Artillery (Nordic at war)
  6. Olga & Changa (Rusviet opening)
  7. People's Army (Rusviet at war)
  8. Zehra & Kar (Crimea opening)
  9. Scout (Crimea at war)
  10. Gunter, Nacht & Tag (Saxony opening)
  11. Disarm (Saxony at war)
  12. Factory
  13. Connor & Max (Albion opening)
  14. Sword (Albion at war)
  15. Akiko & Jiro (Togawa opening)
  16. Ronin (Togawa at war)

\n © Asmodee Digital 2018. Scythe™ is a trademark of Stonemaier LLC. All rights reserved. Scythe: Digital Edition developed by Knights of Unity.\n

0.00 2018-07-10 BR0 37 \N \N 2021-05-20 12:04:30.347-03 2021-05-20 12:04:30.403-03 80 Kingdom Come: Deliverance - HD Voice Pack - French kingdom-come-deliverance-hd-voice-pack-french Please be sure you have version 1.4 of the game.\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n \n \n \n \n \n Please be sure you have version 1.4 of the game.

\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n

\n © 2017 Warhorse Studios s.r.o., Kingdom Come: Deliverance® is trademark of Warhorse Studios s.r.o. All rights reserved.\n

0.00 2018-03-29 BR0 42 \N \N 2021-05-20 12:04:30.459-03 2021-05-20 12:04:30.515-03 89 Steel Division 2 - Reinforcement Pack #2 steel-division-2-reinforcement-pack-2 Expand Steel Division 2 for Free with this second DLC, featuring a brand-new Skirmish map: Gora Kalwaria, playable in every game mode in solo, multiplayer and c \n \n \n \n Expand Steel Division 2 for Free with this second DLC, featuring a brand-new Skirmish map: Gora Kalwaria, playable in every game mode in solo, multiplayer and coop!\n

\nThis DLC is part of a 10 Free DLC, available to every owner of Steel Division 2.\n\n \n

\n Developed and published by Eugen Systems.\n

0.00 2019-10-16 BR0 34 \N \N 2021-05-20 12:04:30.569-03 2021-05-20 12:04:30.628-03 140 Hoa hoa Hoa is a beautiful puzzle-platforming game that features breathtaking hand-painted art, lovely music, and a peaceful, relaxing atmosphere. Experience the magic \n \n \n \n Hoa is a beautiful puzzle-platforming game that features breathtaking hand-painted art, lovely music, and a peaceful, relaxing atmosphere. Experience the magic of nature and imagination as you play the main character, Hoa, on her journey through breathtaking environments back to where it all began.

Breathtaking hand-painted art

Step into a painting that lives - explore a vast world of meticulously crafted sceneries of stunning hand-painted art.

Outstanding original soundtrack

Captivatingly story-telling and emotionally-charged, Hoa's exceptional score, originally composed and live-recorded, brings its world to life with a touch of nostalgia.

Lovely creatures

Keep an eye out for delightful magical creatures along the way. Most of them want to be friends, some might even tell you a little story or two. Cuteness guaranteed.

Gentle, yet compelling flow

Navigate with a keen eye and solve exploration-based puzzles. Relax to the organic rhythm of subtle storytelling while being intrigued by endless little wonders. Be a child - it's easier and harder than it may seem.\n\n\n \n

\n ©2020 Skrollcat Studio, Published by PM Studios, Inc.\n

554.99 1969-12-31 BR0 67 \N \N 2021-05-20 12:06:24.489-03 2021-05-20 12:06:24.548-03 59 Kingdom Come: Deliverance - HD Voice Pack - English kingdom-come-deliverance-hd-voice-pack-english Please be sure you have version 1.4 of the game.\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n \n \n \n \n \n Please be sure you have version 1.4 of the game.

\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n

\n © 2017 Warhorse Studios s.r.o., Kingdom Come: Deliverance® is trademark of Warhorse Studios s.r.o. All rights reserved.\n

0.00 2018-03-29 BR0 42 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.292-03 68 Beneath a Steel Sky beneath-a-steel-sky Robert Foster is an innocent outsider stranded in a vast city where oppressed civilians live and work in soaring tower blocks... while the corrupt, covetous and \n \n \n \n Robert Foster is an innocent outsider stranded in a vast city where oppressed civilians live and work in soaring tower blocks... while the corrupt, covetous and rich lie underground, shielded from all pollution. Alone, save for a robot circuit board, Foster must fight for survival... and discover the sinister truth behind his abduction...\n

\nParanoid population. Psychotic criminals. Power hungry corporation. Big Brother government. Haves and have nots.\n

\nIn the not so impossible future. In the melting pot of Union City. All man's social problems are coming to a boil. Under the claustrophobic lid of a steel sky.\n

\nFrom the pit of the industrial level to the belly of commercial sector, to the spheres where the rich and powerful play. It's Man against Man. Man against Machine. Man against Time. In an urban hell only you can liberate... Maybe.\n

\nFeaturing Revolution's Software innovative Virtual Theatre system, Beneath a Steel Sky is a gripping science fiction point and click adventure game in the cyberpunk genre.\nOver 100 locations designed and art directed by award-winning comic book author Dave Gibbons (Watchmen fame). His comic book, inspired by the game itself, is included to complete the content.\n\n 0.00 1994-04-10 BR0 54 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.403-03 78 Steel Division 2 - Reinforcement Pack #4 steel-division-2-reinforcement-pack-4 Expand Steel Division 2 for Free with this fourth DLC, featuring a brand-new Skirmish map: Brest, West, playable in every game mode in solo, multiplayer and coo \n \n \n \n Expand Steel Division 2 for Free with this fourth DLC, featuring a brand-new Skirmish map: Brest, West, playable in every game mode in solo, multiplayer and coop!\n

\nThis DLC is part of a 10 Free DLC, available to every owner of Steel Division 2.\n\n\n \n

\n Developed and published by Eugen Systems.\n

0.00 2019-10-16 BR0 34 \N \N 2021-05-20 12:04:30.458-03 2021-05-20 12:04:30.515-03 58 Seven: The Days Long Gone Demo seven-the-days-long-gone-demo Seven: The Days Long Gone is an open-world, isometric role-playing game, in which you play as Teriel, a master thief sent on a mission that will shake the found Seven: The Days Long Gone is an open-world, isometric role-playing game, in which you play as Teriel, a master thief sent on a mission that will shake the foundations of the Vetrall Empire. Free roam across the vibrant prison island of Peh, and choose whether to help or exploit its many citizens.

\n\nIf there’s one place that Master Thief Teriel avoids at all costs, it’s the prison island of Peh. But when a daring heist takes an unexpected turn, Teriel finds himself shackled on an airship bound for the infamous island. To make matters worse, the daemon inside his head makes it very clear that the thief will never leave unless he does exactly what he’s told.

Seven: The Days Long Gone you play as Teriel. You must use all of your cunning and clandestine skills to escape a web of deceit and betrayal, and ultimately survive Peh.\n\n

EXPLORE A VIBRANT OPEN WORLD FROM AN ISOMETRIC PERSPECTIVE

From the moment you set foot on Peh, the island is open to you. Sneak, run, climb, and fight your way across a colourful array of environments. You are free to explore wherever you please; only security checkpoints, monster-infested areas, and dangerous factions stand in your way!\n

CHOOSE YOUR PLAYSTYLE

As a master thief, Teriel is well versed in the art of stealth. Get the jump on enemies from behind and above, fool everyone with cunning disguises, or just use the environment to keep out of sight entirely. If things go wrong, however, or you’re feeling impatient, there’s nothing to stop you from letting loose with an array of devastating weapons, and unleashing deadly magical skills upon your foes.\n

ENCOUNTER A MYRIAD OF COLOURFUL CHARACTERS

Encounter an array of people, from despondent slaves and prisoners through to rich socialites. Just be sure to keep an eye out for the two major factions on Peh: the Biomancers and the Technomagi. In such a desperate place, there are many who will take any help they can get. Choose whether to help or exploit Peh’s inhabitants, but be prepared for the consequences.\n

UNCOVER AN EPIC STORY OF DECEIT AND TREACHERY

On Peh, everyone has an agenda, and often there’s more than meets the eye. Dive into a world teeming with distrust, and crushed between the machinations of mighty powers. Work with the daemon that has possessed you to complete a mission of utmost importance. The fate of the Vetrall Empire rests in your hands.\n\n \n

\n © 2016-2017 IMGN.PRO / FOOL'S THEORY all rights reserved. All other copyrights and trademarks are the property of their respective owners.\n

0.00 2017-11-30 BR0 49 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.292-03 67 Dead Cells: Rise of the Giant dead-cells-rise-of-the-giant A FREE DLC!?!? ARE YOU MAD?:Since we began development on Dead Cells, many years ago now, we’ve been completely blown away by the amazing reaction of the commun

A FREE DLC!?!? ARE YOU MAD?:

Since we began development on Dead Cells, many years ago now, we’ve been completely blown away by the amazing reaction of the community. Without your support and feedback we wouldn’t be where we are today. Rise of the Giant is our way of saying thank you. Here’s a free DLC with a bunch of new content, mostly aimed at the people who have been hanging around since day 1, it’s high level and should offer more challenge than most sane people would think reasonable.\n

Features:




\nOn top of these major changes we’re continuously trying to update the game in ways that make it more challenging and more just, all the while remaining open to new players. As such you will notice that the difficulty has been rebalanced so that the entry level of the game, while extremely challenging is now in line with the 5 extra difficulty levels available to those who like to suffer.\n

\nWe hope that you like Rise of the Giant and would like to remind you that we’re not done, we’ll be continuing to make content for the game for as long as you keep demanding it, so feel free to let us know what you’d like to see and if we can make any changes that would make you happy.\n\n\n \n 0.00 2019-03-27 BR0 40 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.403-03 77 Sphinx and the Cursed Mummy: Authoring Tools sphinx-and-the-cursed-mummy-authoring-tools The EngineX Authoring Tools provides everything you need to create your own mods and storylines, by using the exact same toolset that the Eurocom team used to c \n \n \n \n The EngineX Authoring Tools provides everything you need to create your own mods and storylines, by using the exact same toolset that the Eurocom team used to create Sphinx and the Cursed Mummy in 2003. Allowing you to edit final and beta levels, characters and cutscenes to your heart's content.

EuroLand Editor:

Documentation:

Source art assets:

\n © 2017 by THQ Nordic GmbH, Austria. Published by THQ Nordic GmbH. Sphinx is a registered trademark of THQ Nordic AB, Sweden. All other brands, product names and logos are trademarks or registered trademarks of their respective owners.\n

0.00 2018-02-18 BR0 2 \N \N 2021-05-20 12:04:30.458-03 2021-05-20 12:04:30.515-03 87 PC Building Simulator - Deadstick Case pc-building-simulator-deadstick-case Build your dream PC in this specially designed 'Deadstick' themed NZXT H700i case that was created to celebrate Deadstick - Bush Flight Simulator by REMEX Softw \n \n \n \n Build your dream PC in this specially designed 'Deadstick' themed NZXT H700i case that was created to celebrate Deadstick - Bush Flight Simulator by REMEX Software.\n

NZXT H700i - Deadstick

\n(Unlocks in Career mode towards the end of level 27 but in Free Build instantly)

0.00 2019-04-28 BR0 43 \N \N 2021-05-20 12:04:30.569-03 2021-05-20 12:04:30.628-03 95 Pillars of Eternity II: Deadfire - Critical Role Pack pillars-of-eternity-ii-deadfire-critical-role-pack The world of Critical Role meets Pillars of Eternity II: Deadfire with this Critical Role Pack. This DLC adds 8 new player voice sets and character portraits ba

\nThe world of Critical Role meets Pillars of Eternity II: Deadfire with this Critical Role Pack. This DLC adds 8 new player voice sets and character portraits based on characters from the Vox Machina campaign. Let your player character sound like Grog, Keyleth, Percy, Vax, Vex, Scanlan, Pike, and Gilmore!\n\n \n

\n © 2018 Dark Rock Industries Limited. Developed under license by Obsidian Entertainment. Obsidian and the Obsidian logo are trademarks or registered trademarks of Obsidian Entertainment, Inc. Pillars of Eternity, Pillars of Eternity II: Deadfire, and Pillars of Eternity logos are trademarks or registered trademarks of Dark Rock Industries Limited.\n

0.00 2018-05-07 BR0 45 \N \N 2021-05-20 12:04:30.681-03 2021-05-20 12:04:30.719-03 60 The Caligula Effect: Overdose - Stigma Bundle the-caligula-effect-overdose-stigma-bundle Contains all DLC Stigmas for The Caligula Effect: Overdose.\n\n \n \n © FURYU Corporation. Licensed to and published by NIS America \n \n \n \n Contains all DLC Stigmas for The Caligula Effect: Overdose.\n\n \n

\n © FURYU Corporation. Licensed to and published by NIS America, Inc.\n

0.00 2019-03-11 BR0 35 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.292-03 66 Mutant Football League: Dynasty Edition - Purple Oil Pack mutant-football-league-dynasty-edition-purple-oil-pack This pack includes:Purple Mutant Eaters Team & Arena – One of the toughest teams in the league with their eyes set on the Mayhem Bowl. Includes “Thunderdome” ho \n \n \n \n This pack includes:

\n The MUTANT FOOTBALL LEAGUE® game is a parody and is not licensed by the National Football League or the National Football League Players Association.\n© 2018 Digital Dreams Entertainment LLC. All rights reserved.\nMUTANT FOOTBALL LEAGUE, MFL, the MUTANT FOOTBALL LEAGUE logo and the MFL logo are trademarks of Mendheim Productions, LLC in the U.S. and other countries.\nAll rights reserved.\n

0.00 2019-01-03 BR0 38 \N \N 2021-05-20 12:04:30.343-03 2021-05-20 12:04:30.4-03 75 Treasure Adventure Game treasure-adventure-game This game was clearly made with passion. You can see the proof of this almost everywhere. The 2D environments are colorful and enchanting, gameplay feels smooth \n \n \n \n This game was clearly made with passion. You can see the proof of this almost everywhere. The 2D environments are colorful and enchanting, gameplay feels smooth and polished, not to mention the absolutely huge and very diversified world in which you can spend many hours just exploring. Treasure Adventure Game casts you in the role of a young boy who lands on an island that is a fragment of what was once a continent, destroyed in the war between a demon and a wizard. You accept quests, travel across the oceans, and generally have a bang-up time of being a little boy in a big world, out there looking for treasure and adventure. Your equipment consists of a hat, a parrot, and a boat that appears whenever you touch water. Combine those with the basic platforming abilities like jumping and crawling that you’re familiar with from every platforming game ever, and you’ve got the basics of a phenomenal romp across a huge world filled with treasure, maps, secrets, danger, and triumph.\n

\nThe music changes with the environments and day-night cycles, enhancing the feel the game is evoking and making you feel immersed in the world as you travel through it. The game has a retro feel, yes, but you really have to see it for yourself to understand what Treasure Adventure Game brings to the table. Since it’s free, of course, there is simply no reason not to!\n

\nTreasure Adventure Game was created by Stephen Orlando. He spent over 2 years of his life developing it. When you see the scope and detail in this game, it’s hard to believe that it was created by just one guy. But it was! So if you like it, head over to his website and break that donate button!\n\n\n 0.00 2011-11-25 BR0 57 \N \N 2021-05-20 12:04:30.454-03 2021-05-20 12:04:30.513-03 85 Werewolf: The Apocalypse - Heart of the Forest Demo werewolf-the-apocalypse-heart-of-the-forest-demo Werewolf: the Apocalypse - Heart of the Forest is coming soon and can be wishlisted hereRage Gets Things Done\nWerewolf: The Apocalypse - Heart of the Forest thr
Werewolf: the Apocalypse - Heart of the Forest is coming soon and can be wishlisted here


Rage Gets Things Done

\nWerewolf: The Apocalypse - Heart of the Forest throws you deep into a primeval wilderness in the center of modern Europe. It’s where the protectors of nature wage their ancient, neverending war against the forces of destruction.

\nYou play as Maia, who comes to Poland hoping to trace her family roots. Trying to learn more about her ancestry, she will discover her family’s dark secrets and reveal hidden truths about the last wilderness of Central Europe. 

\nVisit real-world places of mystery and power. Explore local legends and traditions. Discover the fascinating world and history of the Polish-Belarusian borderlands. You will witness how nature clashes with technology and greed. Can it survive without our help?

Discover the Legendary RPG System

\nFor the first time ever, you will be able to experience Werewolf: The Apocalypse on your computer. 

\nWerewolf: The Apocalypse - Heart of the Forest adapts the mechanics of the legendary from the World of Darkness universe, emulating the experience of a classic role-playing session. 


\nBy making tough choices that often bring dramatic consequences, you will affect your character attributes: Rage, Willpower, and Health. This impacts your ability to perform certain actions as well as change the range of available choices and the presentation of the world. The game will analyze your behavior and determine what kind of werewolf you are. 

\nWerewolf: The Apocalypse - Heart of the Forest is a beautifully written, deep, and balanced experience. It’s tailored for World of Darkness veterans and newcomers looking for an accessible entry into this rich, acclaimed universe. 


They teach you to fear rather than to be angry, but fear solves nothing. 
\nAnger is there for a reason, to shield and protect you. 
\nAnger is the part of you that cares.


Rage gets things done.

0.00 2020-09-08 BR0 22 \N \N 2021-05-20 12:04:30.567-03 2021-05-20 12:04:30.63-03 101 Figment 2: Creed Valley figment-creed-valley Piano bridges, dancing plants and musical showdowns, ready to dive into The Mind?\nFigment 2: Creed Valley is an action-adventure game set in the human mind. Nig Piano bridges, dancing plants and musical showdowns, ready to dive into The Mind?



\nFigment 2: Creed Valley is an action-adventure game set in the human mind. Nightmares are spreading chaos and have overrun once-peaceful lands. Join Dusty, The Mind’s courage, as you make your way through puzzles, musical boss fights and unique environments. Face your fears head-on.\n

\nNightmares have shattered the Moral Compass, making The Mind unable to function properly. Dusty and his ever-optimistic sidekick, Piper, must travel to Creed Valley, where The Mind’s ideals are formed to restore peace. A journey filled with musical showdowns and mind-bending puzzles awaits.\n




\nNightmares have their own theme songs, shining light on why they have appeared. \n
\nDodge and weave as they taunt you. \n






\nExplore The Mind’s two fundamental states: Open-minded and Closed-minded. Switch between states and adapt to the shifting environment to move forward.\n






\nProve your mental and physical strength through mind-bending puzzles and fights timed to the soundtrack.\n




\nJoy, sadness and everything in between. Figment 2: Creed Valley draws from emotional experiences that affect us all. \n
\nFace stress, anxiety and the fear of the dark in a musical and surreal universe. \n
\nGrab your sword and restore the light that once was.\n

\n © Bedtime Digital Games ApS. All rights reserved.\n

554.99 1969-12-31 BR0 79 \N \N 2021-05-20 12:06:18.293-03 2021-05-20 12:06:18.347-03 61 Spiritfarer Demo spiritfarer-demo The full version of Spiritfarer is available hereWhat will you leave behind?Spiritfarer is a cozy management game about dying. You play Stella, ferrymaster to


The full version of Spiritfarer is available here

What will you leave behind?

Spiritfarer is a cozy management game about dying. You play Stella, ferrymaster to the deceased, a Spiritfarer. Build a boat to explore the world, then befriend and care for spirits before finally releasing them into the afterlife. Farm, mine, fish, harvest, cook, and craft your way across mystical seas. Join the adventure as Daffodil the cat, in two-player cooperative play. Spend relaxing quality time with your spirit passengers, create lasting memories, and, ultimately, learn how to say goodbye to your cherished friends. What will you leave behind?\n

Features:


\n ©2019 Thunder Lotus. All Rights Reserved. Spiritfarer and Thunder Lotus are trademarks of Thunder Lotus in the U.S. and in other countries.\n

0.00 2020-08-17 BR0 18 \N \N 2021-05-20 12:04:27.936-03 2021-05-20 12:04:30.297-03 71 BEAUTIFUL DESOLATION Demo beautiful-desolation-demo The full version of BEAUTIFUL DESOLATION is available hereBEAUTIFUL DESOLATION is a 2D isometric adventure game set in the distant future. Explore a post-apocal


The full version of BEAUTIFUL DESOLATION is available here


BEAUTIFUL DESOLATION is a 2D isometric adventure game set in the distant future. Explore a post-apocalyptic landscape, solve puzzles, meet new friends and make powerful enemies, mediate conflicts and fight for your life as you unravel the secrets of the world around you.

FEATURING



\nMark, a man out of time, searches for his lost brother Don, in a far-flung futuristic era ruled by highly advanced technologies which are both revered and reviled. \n


\nYour surroundings hold echoes of a desolate past, and glimpses of a dark future that has yet to be written by your actions. Be prepared to face many tough choices that will shape this land long after you complete your journey. \n



\nThe score is masterfully crafted by composer Mick Gordon, known for his work on Wolfenstein®, DOOM®, Prey®, Killer Instinct® and Need for Speed®.\n




\nThe inhabitants of this world will help and hinder you, as you make new discoveries and navigate the spectacular African-inspired landscape. Negotiate your passage with local leaders, healers and warriors, or find yourself embroiled in a battle against nanite swarms, enormous scorpions and rocket-equipped robots. \n



\nFrom thriving villages to crumbling cities, petrified forests and bone-dry ocean beds, this strange new world holds a multitude of terrains to uncover, beautifully rendered in 2D isometric art.\n


FIND YOUR BROTHER AND GET HOME...


BEAUTIFUL DESOLATION™ is brought to you by THE BROTHERHOOD™, the studio behind STASIS® and CAYNE®.\n\n\n \n

\n © 2020 THE BROTHERHOOD. BEAUTIFUL DESOLATION™ is a trademark. All rights reserved. All product names, trademarks and registered trademarks are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names,trademarks and brands does not imply endorsement.\n

0.00 2020-08-16 BR0 58 \N \N 2021-05-20 12:04:30.35-03 2021-05-20 12:04:30.403-03 79 Kingdom Come: Deliverance - HD Voice Pack - German kingdom-come-deliverance-hd-voice-pack-german Please be sure you have version 1.4 of the game.\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n \n \n \n \n \n Please be sure you have version 1.4 of the game.

\nEnjoy the Kingdom Come: Deliverance with better quality voice overs now!\n\n \n

\n © 2017 Warhorse Studios s.r.o., Kingdom Come: Deliverance® is trademark of Warhorse Studios s.r.o. All rights reserved.\n

0.00 2018-03-29 BR0 42 \N \N 2021-05-20 12:04:30.458-03 2021-05-20 12:04:30.515-03 90 Kingdom Come: Deliverance - HD Sound Pack kingdom-come-deliverance-hd-sound-pack Please be sure you have version 1.4 of the game, the sounds will be updated automatically after download.\n\nEnjoy the Kingdom Come: Deliverance with HD sounds no \n \n \n \n Please be sure you have version 1.4 of the game, the sounds will be updated automatically after download.\n

\nEnjoy the Kingdom Come: Deliverance with HD sounds now!\n\n \n

\n © 2017 Warhorse Studios s.r.o., Kingdom Come: Deliverance® is trademark of Warhorse Studios s.r.o. All rights reserved.\n

0.00 2018-03-29 BR0 42 \N \N 2021-05-20 12:04:30.569-03 2021-05-20 12:04:30.628-03 96 Pillars of Eternity II: Deadfire - Scalawags Pack pillars-of-eternity-ii-deadfire-scalawags-pack Round out your crew and personalize your flagship with the Scalawags Pack DLC. This Free update adds three new recruitable crew members to the taverns of the De

\nRound out your crew and personalize your flagship with the Scalawags Pack DLC. This Free update adds three new recruitable crew members to the taverns of the Deadfire and adds a wide array of ship upgrades to many of the shipwrights throughout the Deadfire Archipleago.\n

\nIncluded in this DLC:\n\n

\n © 2018 Dark Rock Industries Limited. Developed under license by Obsidian Entertainment. Obsidian and the Obsidian logo are trademarks or registered trademarks of Obsidian Entertainment, Inc. Pillars of Eternity, Pillars of Eternity II: Deadfire, and Pillars of Eternity logos are trademarks or registered trademarks of Dark Rock Industries Limited.\n

0.00 2018-06-20 BR0 45 \N \N 2021-05-20 12:04:30.681-03 2021-05-20 12:04:30.719-03 102 Myst myst Explore the unreal Ages of Myst in a new dimension!\nWelcome to Myst: the starkly beautiful island, eerily tinged with mystery and shrouded in intrigue. Explore \n \n \n \n Explore the unreal Ages of Myst in a new dimension!

\nWelcome to Myst: the starkly beautiful island, eerily tinged with mystery and shrouded in intrigue. Explore the deeper connections and uncover a story of ruthless family betrayal.
\nCyan, the indie studio that created the beloved classic, has reimagined Myst. Built from the ground up to play in VR and flatscreen PC, with new art, sound, interactions, and even optional puzzle randomization. The highly anticipated Myst VR experience has finally arrived!

\nJourney to the Ages, unravel the puzzles, and be a part of the surrealist world that will become your own.
554.99 1969-12-31 BR0 82 \N \N 2021-05-20 12:06:18.293-03 2021-05-20 12:06:18.347-03 2 Thronebreaker: The Witcher Tales thronebreaker-the-witcher-tales This game is part of your Welcome Offer!\n \n Get this game for a special price just for you!Find more excellent games at great discounts\n :\n

The Witcher World is Back!


"One of the best-written RPGs in years" - 9.4/10 - IGN

"Superb" - 9/10 - GameSpot

"A spectaculary crafted RPG" - 5/5 - GamesRadar+

"Addictive gameplay and wonderful story" - 9/10 - Critical hit


\n\nThronebreaker is a single player role-playing game set in the world of The Witcher that combines narrative-driven exploration with unique puzzles and card battle mechanics. \n

\nCrafted by the developers responsible for some of the most iconic moments in The Witcher 3: Wild Hunt, the game spins a truly regal tale of Meve, a war-veteran queen of two Northern Realms — Lyria and Rivia. Facing an imminent Nilfgaardian invasion, Meve is forced to once again enter the warpath, and set out on a dark journey of destruction and revenge.\n\n\n

Main Features:

Additional Features:

Thronebreaker: The Witcher Tales comes with these bonus items:

16.79 2018-10-22 BR0 1 \N \N 2021-05-20 12:02:49.275-03 2021-05-20 12:02:49.307-03 6 BIOMUTANT biomutant Preorder now to get the Special Mercenary Class DLC and the Official Soundtrack, in addition the the full game Biomuntant.\n\nBIOMUTANT® is an open-world, post-ap

Preorder now to get the Special Mercenary Class DLC and the Official Soundtrack, in addition the the full game Biomuntant.

\n\nBIOMUTANT® is an open-world, post-apocalyptic Kung-Fu fable RPG, with a unique martial arts styled combat system allowing you to mix melee, shooting and mutant ability action.\n

\nA plague is ruining the land and the Tree-of-Life is bleeding death from its roots. The Tribes stand divided. Explore a world in turmoil and define its fate – will you be its saviour or lead it to an even darker destiny?\n

Key Features:

\n © 2021 THQ Nordic AB & Experiment 101 AB. Developed by Experiment 101 AB. THQ and their respective logos are trademarks and/or registered trademarks of THQ Nordic AB. All rights reserved. All other trademarks, logos and copyrights are property of their respective owners.\n

199.09 2021-05-24 BR0 2 \N \N 2021-05-20 12:02:56.687-03 2021-05-20 12:02:56.953-03 18 Kenshi kenshi Kenshi is an open world, squad based sandbox RPG set in a brutal sword-punk wasteland. Gameplay is open-ended rather than a linear story, so you can play as a s \n \n \n \n Kenshi is an open world, squad based sandbox RPG set in a brutal sword-punk wasteland. Gameplay is open-ended rather than a linear story, so you can play as a settler, a trader, a thief, a rebel, a warlord, an adventurer, a farmer, a slave... or just food for the cannibals. \n

\nBut first things first, you need to survive. Train your men up from puny victims to master warriors, carry your wounded squad mates to safety and get them all home alive. You are not the chosen one, you’re not great and powerful, you don’t have more ‘hitpoints’ than everyone else and you are not special. Unless you work for it. \n\n

\n Copyright 2016, Copyright Lo-Fi Games Ltd. 2006\n

40.59 2018-12-05 BR0 11 \N \N 2021-05-20 12:02:57.011-03 2021-05-20 12:02:57.075-03 29 Divinity: Original Sin 2 - Definitive Edition divinity-original-sin-2 The eagerly anticipated sequel to the award-winning RPG. Gather your party. Master deep, tactical combat. Join up to 3 other players - but know that only one of \n \n \n \n \n\nThe eagerly anticipated sequel to the award-winning RPG. Gather your party. Master deep, tactical combat. Join up to 3 other players - but know that only one of you will have the chance to become a God.


\nThe Divine is dead. The Void approaches. And the powers lying dormant within you are soon to awaken. The battle for Divinity has begun. Choose wisely and trust sparingly; darkness lurks within every heart.\n

Who will you be?

\nA flesh-eating Elf, an Imperial Lizard or an Undead, risen from the grave? Discover how the world reacts differently to who - or what - you are.\n

It’s time for a new Divinity!

\nGather your party and develop relationships with your companions. Blast your opponents in deep, tactical, turn-based combat. Use the environment as a weapon, use height to your advantage, and manipulate the elements themselves to seal your victory.\n

Ascend as the god that Rivellon so desperately needs.

\nExplore the vast and layered world of Rivellon alone or in a party of up to 4 players in drop-in/drop-out cooperative play. Go anywhere, unleash your imagination, and explore endless ways to interact with the world. Beyond Rivellon, there’s more to explore in the brand-new PvP and Game Master modes.\n

“One of the most captivating role-playing games ever made”
10/10GameSpot

“Larian's epic sequel is one of the best RPGs of the decade.”
9.6/10IGN

“One of the greatest PC RPGs of all time”
9.75/10Game Informer

\n ©2016 Larian Studios. All rights reserved. Divinity, Divinity: Original Sin and Larian are registered trademarks of Larian Studios Games Ltd.\n

90.99 2017-09-13 BR0 5 \N \N 2021-05-20 12:02:57.131-03 2021-05-20 12:02:57.198-03 40 Vampire: The Masquerade – Coteries of New York Deluxe Edition vampire-the-masquerade-coteries-of-new-york-deluxe-edition Vampire: The Masquerade - Coteries of New York Deluxe Edition \nThe Vampire: The Masquerade - Coteries of New York Deluxe Edition is a set, which consists of Vam Vampire: The Masquerade - Coteries of New York Deluxe Edition

\nThe Vampire: The Masquerade - Coteries of New York Deluxe Edition is a set, which consists of Vampire: The Masquerade - Coteries of New York base game (a narrative experience set in the rich universe of Vampire: The Masquerade 5th Edition, which presents the struggle for power between two vampiric factions - the Camarilla and the Anarchs - bathed in the night lights of the Big Apple), an official Soundtrack, composed by Arkadiusz Reikowski and Brunon Lubas, as well as an official, 52-page long Artbook that additionally comes with over 20 themed wallpapers (including desktop and mobile, together with a few animated ones).\n
\n \n

Official Vampire: The Masquerade - Coteries of New York Soundtrack

\nDive deep and lose yourself  in the universe of Vampire: The Masquerade 5th Edition through this high-quality Original Soundtrack available in MP3 and FLAC formats. 

\nComposed by Arkadiusz Reikowski, one of the most appreciated Polish composers, creator of several critically acclaimed soundtracks to games such as Kholat, Layers of Fear, Observer, Layers of Fear 2 etc., as well as by Brunon Lubas - one of the most talented Polish video games music composers, creator of Ritual: Crown of Horns soundtrack.

\nThe 49 minutes and 1 second of Reikowski's and Lubas' atmospheric soundtrack consists of 13 tracks.
\n \n

Vampire: The Masquerade - Coteries of New York Artbook

\nThis high quality, official Vampire: The Masquerade - Coteries of New York artbook consists of 72 pages full of concept arts from different stages of the game's development, final pieces of art included in the game, as well as quotes from the game's lead designer and artists engaged in creating stunning visuals - characters, backgrounds, animations - everything that makes Coteries of New York a truly atmospheric, fully licensed part of the globally renown Vampire: The Masquerade 5th Edition universe. Additionally this artbook will contain link to over 20! Vampire: The Masquerade - Coteries of New York themed wallpapers (this include desktop and mobile wallpapers and even some animated ones).

About Vampire: The Masquerade - Coteries of New York

\nVampire: The Masquerade - Coteries of New York presents the conflict between two vampiric factions: the traditionalist Camarilla and the fiercely independent Anarchs among the landmarks and night lights of the Big Apple. It's a unique, atmospheric, single-player narrative experience, set in the rich universe of Vampire: The Masquerade 5th Edition.\n\n \n

\n (c) Paradox Interactive, Vampire: The Masquerade - Coteries of New York® Copyright© [2019] Paradox Interactive AB (publ) All rights reserved.\n(c) 2019 by iFun4all S.A. All rights reserved. Trademarks: iFun4all and Draw Distance are the property of iFun4all S.A. copyright notice.\n

47.49 2019-12-10 BR0 21 \N \N 2021-05-20 12:02:57.266-03 2021-05-20 12:02:57.344-03 115 Eldest Souls eldest-souls Eldest Souls is a challenging, pixel-art boss-rush game. \n\nThe Old Gods have long been imprisoned. Humanity has prospered. Great Kingdoms have arisen from the n
Eldest Souls is a challenging, pixel-art boss-rush game. \n

\nThe Old Gods have long been imprisoned. Humanity has prospered. Great Kingdoms have arisen from the now forsaken temples of worship. But no longer…\n
\nIn their final act of revenge, the Old Gods have unleashed a great Desolation upon the world. Farmlands have turned to desert, rivers to dust. \n


\nThe Great Crusade sent to slay the Imprisoned Gods once and for all, is all but vanished, and the human Kingdoms in disarray. A lone Warrior approaches the Citadel, ancient prison of the Gods. His objective is simple: slay them all.\n


\nIn Eldest Souls, you will explore the vast, forgotten Citadel, in search of the Old Gods. The temple-prison will contain interesting NPC’s, exciting quests and dark mysteries. Encounters with the Old Gods will be…deadly. With fast-paced and challenging action combat, every moment counts. Yet fortune favors the bold and defeating the Old Gods may grant the player powers beyond mortal comprehension.\n


FEATURES:

The Old Gods

Slaying Gods is no easy task. Prepare yourself to be overwhelmed by brutal, challenging encounters, in which Only the most unrelenting will make it through.

Dying world

Explore and discover the mysterious, ancient Citadel. Prison of the Old Gods, this monument of the Human’s triumph has long be forgotten, and something dark has taken root deep within its mazes.

Progress & Adapt

Every encounter will the Old Gods will be a unique, new challenge. Claim their power, unlock various Talents and Abilities, and slay them all.




554.99 1969-12-31 BR0 71 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.22-03 123 Imagine Earth imagine-earth Planetary Colonization\nImagine Earth is a real-time planet simulation and a build up strategy game. Your job as a space colony manager is to explore and populat

Planetary Colonization

\nImagine Earth is a real-time planet simulation and a build up strategy game. Your job as a space colony manager is to explore and populate distant planets. Build up thriving and profitable colonies on a global scale and trade resources and goods into space.\n

Profits vs. Ecocide

\nYou will experience a massive conflict between the profit goals of the interstellar corporations and the need to preserve living conditions for your people. Exhaust emissions and ground pollution impact the global climate as your colony is growing. Increasing temperatures melt down polar caps and your colonies are destroyed by rising sea levels.\n

Expansion & Research

\nRaise great cities and satisfy their appetite for resources by building power plants, farms and factories. Dig for ideon crystals, pacify riots, research technologies and constructs and maximize your growth while maintaining a healthy ecosystem.\n

Allies, Threats & Enemies

\nGet ready to deal with threats like asteroid strikes, twisters, wild fires, volcanoes and rising sea levels. Fend off space raiders and alien investors. Coexist and trade with natives, merchants and hostile colonies.\n

Capitalist Space Age

\nIn 2048 huge corporations have divided Earth among themselves and exploited its natural resources to a large extent. Now the discovery of ideon crystals allows journeys into space, while technologically and ideologically almost everything remains the same. The laws of the market are being spread into the universe.\n

Competition and Economic Warfare.

\nOn each discovered planet a competition for economic dominance breaks out. To expand your colony as fast as possible and overcome your opponents you exploit the freely available fossil resources and minerals. Additional money is provided by selling shares of your colony. Take over opposing companies by buying up their shares.\n

Trade Resources and Technologies

\nMerchants and technology traders organize the interplanetary trade and will happily buy all minerals and resources you extract from your territory while selling expensive technologies. The same goes for cooperating colonies and alien tribes that live on some of the planets.

Features


554.99 1969-12-31 BR0 97 \N \N 2021-05-20 12:06:24.274-03 2021-05-20 12:06:24.329-03 131 Saint Kotar saint-kotar You can support the developer by purchasing the Saint Kotar: Supporter pack which includes a collection of digital goodies. Buy it here, support the developer.\n


You can support the developer by purchasing the Saint Kotar: Supporter pack which includes a collection of digital goodies. Buy it here, support the developer.\n

"Stranger, what do you know about Saint Kotar?”

\nSaint Kotar is a psychological horror adventure set within a beautifully dark hand-painted world. Its eerie original soundtrack and gripping atmosphere follow your every step as you journey through this vast and foreboding ancient place, plagued by witchcraft and the occult.\n

\nYour decisions affect the storylines you experience and the persons you meet in this 20-hour long adventure featuring two playable characters and multiple endings. Only question is, will you find your humanity – or descend into madness and death?

"Do not be afraid or tremble in dread.”

\nLate October, 1996. As Benedek Dohnany and Nikolay Kalyakin you awake from a terrible dream in the rural town of Sveti Kotar, Croatia. This is not your house, you've never been in this place before, and though you can't explain, your mind will not let go of the sense there is something horribly amiss here.\n

"This town is hanging loosely on the edge of hell.”

\nYour relative has vanished and her disappearance may be related to a macabre series of murders and strange phenomena in Sveti Kotar. This ancient town is enslaved by two realities; blessed by God on the surface, and plagued by witchcraft and the occult beneath.

"Change your reality, son.”

\nYou search for the missing woman playing as two godly men that struggle with their own grip on reality; as you change control between them, reality around you changes in real time, affecting your progress through the story and deepening the understanding of your characters' minds.

"What's so special about Saint Kotar?”

\n © 2020 Red Martyr Entertainment d.o.o.. Saint Kotar, Red Martyr Entertainment and their respective logos are trademarks and/or registered trademarks of Red Martyr Entertainment d.o.o.. All rights reserved.\n

554.99 1969-12-31 BR0 69 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.441-03 143 Minute of Islands minute-of-islands Youtube\n © 2019 Studio Fizbin GmbH and Mixtvision Mediengesellschaft mbH. All rights reserved. Youtube


\n © 2019 Studio Fizbin GmbH and Mixtvision Mediengesellschaft mbH. All rights reserved.\n

0.00 1969-12-31 BR0 84 \N \N 2021-05-20 12:06:24.499-03 2021-05-20 12:06:24.55-03 107 Whateverland whateverland Whateverland Prologue is available on GOG.com. You can see it here\nWhateverland is a hand-painted point-n-click adventure game with a branching dialogue system,
Whateverland Prologue is available on GOG.com. You can see it here


\nWhateverland is a hand-painted point-n-click adventure game with a branching dialogue system, non-linear gameplay, various endings and unique in-game turn-based strategy sport simulator. \n


Vincent is a skilled thief who decides to steal a precious necklace from a mansion of a lonely old woman named Beatrice. His plan would have gone perfectly well, but when she catches him red-handed, she turns out to be an ancient powerful witch.\n

\nAs a punishment, Beatrice sends him to the parallel world she has created, where the witch traps those she considers her enemies. The first inhabitants of this bizarre world called it Whateverland, and since then it kind of stuck.\n

\nVincent teams up with a weird guy named Nick and together they are willing to find their way out. \n
\nAre they going to make it? That's for you to decide!\n



\n © 2020 Caligari Games S. L.\nWhateverland, Whateverland logo and the Caligari Games logo are trademarks of Caligari Games S. L. All rights reserved.\n

554.99 1969-12-31 BR0 68 \N \N 2021-05-20 12:06:24.156-03 2021-05-20 12:06:24.22-03 118 Astalon: Tears of the Earth astalon-tears-of-the-earth StoryThree heroic explorers wander the post-apocalyptic desert on a mission to save their village from despair. They soon find a dark, twisted tower that has ri

Story

Three heroic explorers wander the post-apocalyptic desert on a mission to save their village from despair. They soon find a dark, twisted tower that has risen from the depths of the planet and seemingly holds the key to their survival. In order to ensure their victory, one of them has made a secret pact with the Titan of Death, Epimetheus, allowing them to reincarnate until they have accomplished their mission. But what fate lies in store for the heroes and their village?\n

Death is Only the Beginning

Astalon: Tears Of The Earth is an action-platformer set in a dying world where life is cruel, but death can be a stepping stone to victory! Use the unique skills and weapons of Arias the fighter, Kyuli the rogue, and Algus the wizard, to surmount the mysterious tower and find the answers to their survival. Slay terrible monsters, discover powerful artifacts, and solve fiendish puzzles, reaching new heights in the tower with the aid of a Titan. Follow a story about friendship and sacrifice, building up the courage to take down giants to protect the weak and powerless. Strengthen your party and change their fate by embracing death. Discover the countless secrets of the Tower of Serpents!\n

Features

554.99 2021-06-02 BR0 29 \N \N 2021-05-20 12:06:24.273-03 2021-05-20 12:06:24.329-03 126 ASYLUM asylum ASYLUM Demo will be available until June 26th, 1 pm UTC. You can claim it here\n\nFrom the creators of cult sleeper hit Scratches and the haunting Serena, comes a


ASYLUM Demo will be available until June 26th, 1 pm UTC. You can claim it here


\n\nFrom the creators of cult sleeper hit Scratches and the haunting Serena, comes a chilling journey into the darkest depths of your mind. ASYLUM is an ambitious and intricate horror adventure casting you into the hallucinatory setting of the Hanwell Mental Institute, a silent witness to unimaginable atrocities that transpired between its endless corridors.\n

\nWith influences ranging from Lovecraft to Peter Cushing to Lucio Fulci, ASYLUM has been meticulously crafted with a strong focus on storytelling and atmosphere. Explore countless tenebrous environments, find your way throughout a towering, lifelike mental hospital, and solve a surreal mystery that will haunt you for years to come.

What you can expect


\nWe poured our heart and soul into creating an involving and endlessly rewarding adventure. If you love the kind of slow-burning horror with an old-school sensibility that creeps upon you, ASYLUM will be an unforgettable experience.\n\n\n \n

\n Copyright © Senscape SRL, 2019. All rights reserved,\n

554.99 1969-12-31 BR0 94 \N \N 2021-05-20 12:06:24.38-03 2021-05-20 12:06:24.441-03 113 Xenonauts 2 xenonauts-2 Xenonauts-2 is a strategic planetary defense simulator that puts you in charge of a clandestine military force attempting to protect the planet from extraterres \n \n \n \n Xenonauts-2 is a strategic planetary defense simulator that puts you in charge of a clandestine military force attempting to protect the planet from extraterrestrial invasion. \n

\nIt is a hugely complex strategy / tactics game that gives you total control of your organisation all the way from the command staff in your base down to the troops on the battlefield, updating and expanding the classic X-Com formula into something deeper and more distinctive!\n\n

\n Copyright Goldhawk Interactive 2018\n

554.99 1969-12-31 BR0 51 \N \N 2021-05-20 12:06:24.157-03 2021-05-20 12:06:24.22-03 132 ROGUE SHIFT rogue-shift ROGUE SHIFT is a high-intensity rogue-lite experience with RPG elements, set on a harsh planet that will test your will to survive. To stay alive, you will pit ROGUE SHIFT is a high-intensity rogue-lite experience with RPG elements, set on a harsh planet that will test your will to survive. To stay alive, you will pit yourself against hordes of relentless enemies in an unforgiving, hostile environment.\n

\nLevel up, unlock perks, gain psionic abilities and find weapons to become progressively more powerful as you attempt to stay one step ahead of the enemy.

STORY

When your dropship is shot down by supposedly friendly defences, you find yourself isolated. Your oxygen is running low, dangerous creatures lurk, and hazardous environments separate you from the nearest outpost. Before you can even think about finding answers, your immediate concern is just to survive the first five minutes.

FEATURE SUMMARY

GAMEPLAY MODES

CRASHLANDER: A rogue-lite experience with RPG and story elements. You have one life. Death is permanent. But all hope is not lost. Level up to unlock Perks that permanently boost your character in small, incremental ways that suit your play style. This gives you the slight edge you need on your next attempt to survive.\n

DOOMED: Survive against never-ending waves of enemies as you move from zone to zone, rapidly upgrading your capabilities through Psionics, Weapons and Perks. Keep your score multiplier high by killing enemies faster. Take a short break between waves to find loot, buy items at shops, or to activate defensive turrets. You will eventually die, but will you reach the top of the online scoreboard?\n

ESCAPE: In this variation of Doomed mode, you can actually make it out alive! Battle through a series of increasingly difficult zones to reach the Exit in record time. Fight for the top spot on the online scoreboard.\n\n \n 554.99 1969-12-31 BR0 77 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.437-03 120 Realms Beyond: Ashes of the Fallen realms-beyond-ashes-of-the-fallen Realms Beyond is a classically inspired fantasy role-playing game with turn-based combat and a party system that allows you to control up to six characters at a
Realms Beyond is a classically inspired fantasy role-playing game with turn-based combat and a party system that allows you to control up to six characters at any one time. Whether you yearn for an open world to explore at your own pace, tactical combat that allows you to plan your moves carefully, or want to lose yourself in the rich fabric of our world, trying to survive and make your mark, Realms Beyond offers endless choices, lands to travel, monster-infested dungeons and a host of storylines to follow. Adapting and responding to the player’s interactions with the world, you will find a depth and richness for your adventures that combines the very best of traditional gameplay with modern-day technologies. The result is a game world that comes alive, brimming with undiscovered stories, content, mysteries and challenges.\n

Key Features:

\n ©2019 Ceres Games GmbH. All rights reserved.The Realms Beyond logo is a registered trademark of Ceres Games GmbH.\nOpen Game License v 1.0a Copyright 2000, Wizards of the Coast, Inc.\n

554.99 1969-12-31 BR0 74 \N \N 2021-05-20 12:06:24.273-03 2021-05-20 12:06:24.329-03 128 Edge Of Eternity edge-of-eternity In a world torn asunder, the people of Heryon wage a desperate war against a mysterious invader, the Archelites. As this conflict against magic and technology g

\nIn a world torn asunder, the people of Heryon wage a desperate war against a mysterious invader, the Archelites. As this conflict against magic and technology grows to cataclysmic proportions, a new threat emerges from the battlefield.\n

\nThe Corrosion: the Archelites’ most cruel weapon, a terrible sickness that poisons the body, twists the limbs and warps people into horrible, misshapen abominations.\n

\nA forlorn soldier in this godforsaken war, Daryon is ready to make the ultimate sacrifice for his country... until the day he receives a letter from his sister. Their mother has contracted the fateful disease, and they need him to find a cure.\n

\nOn that day, Daryon will have to make a choice that will change his life – and the fate of his world – forever.\n



554.99 1969-12-31 BR0 98 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.437-03 137 Brave Earth: Prologue brave-earth-prologue Brave Earth: Prologue is a challenging and engaging action platformer, made in the 8-bit style of the NES. While heavily inspired by classic games such as Castl \n \n \n \n Brave Earth: Prologue is a challenging and engaging action platformer, made in the 8-bit style of the NES. While heavily inspired by classic games such as Castlevania and Ninja Gaiden, Brave Earth: Prologue strikes its own balance between methodical, high risk gameplay and aggressive, fast-paced action. Brave Earth: Prologue's beautiful, handcrafted levels are filled with meticulously placed challenges, aiming to engage players more than frustrate them.\n


\nPlay through a story that spans three characters with their own unique paths and playstyles.\n

\nNaomi vos Cruz, the young, inexperienced knight who is sent on a simple courier mission that spirals out of control. She finds herself battling monsters and mercenaries in a struggle to stop a cult's powerful, demonic ritual. While not particularly mobile, Naomi has several special attacks to help her deal with various situations.\n

\nSinlen Rothschild, a powerful and mobile mage and Naomi's best friend. Ambushed during the investigation of ancient ruins, Sinlen defends herself with a wide assortment of long range magic.\n

\nTrevor vos Cruz, Naomi's older brother and Master Hunter for The Church. While Trevor is slow in attacking with his giant sword, Verbanner, he excels at quick, evasive maneuvers.\n




\nIt feels like years since I first announced Brave Earth: Prologue. Mostly because it actually has been. The side project that was supposed to take a few months instead sprawled into a retail game that has taken several years to complete.\n

\nBrave Earth wears its influences a bit... shamelessly on its sleeve. The game was originally conceived to be a freeware "study" game for me -- learning through emulation. But the product I'm releasing is more than just emulation. I've tried my best to both understand and then build upon one of my favorite eras in platformers to almost arrive at a uniquely different alternative reality. A more modern sensibility without playing like a modern take on a retro game.\n

\nAs George Lucas's Star Wars built upon and paid tribute Flash Gordon while establishing its own voice, I'm hoping Brave Earth can do the same.\n


\nThis is Dan Stern from Dangen Entertainment. I’m both pleased and proud to present Brave Earth: Prologue. \n

\nI’ve said in other places how happy I am for pixel art to have made a come back with the independent development scene. The pixel art in BEP is excellent, but what I have found to stand out and amaze me in this game is the meticulous care that Kayin put into designing the encounters. It doesn’t come as any surprise to me considering his previous work, but in no time at all I got the feeling that he was in my own head in a sense. \n

\nKayin’s complete understanding of player psychology is as enviable as it is rare in game development. I Wanna Be the Guy was a game that was completely designed around it. Traps spring up and invisible blocks bar your path, leading to your frequent death. It was almost as much a commentary on game design in a meta sense as it was a clever arrangement of platforming puzzles. \n

\nIn Brave Earth: Prologue, by contrast, traps and obstacles are laid bare before you. This is not a game meant to trick you cleverly, but rather to masterfully utilize a comprehensive understanding of what makes for a satisfying challenge.\n

\nIt’s remarkable that the game also leads the player along a logical path through the game’s world, with three totally different playable characters, no less. While level-based rather than open world, BEP still gave me a powerful sense of progress, journey and adventure. To find that depth of setting in a game with so much attention paid to the gameplay balance is impressive to say the least.\n

\nI couldn’t be more proud to work with a talented developer like Kayin. This game is a masterpiece of 8-bit era game design and it vastly raises the bar in my eyes as a gamer. I can’t wait for you all to experience it.\n\n\n \n

\n DANGEN ENTERTAINMENT is a trademark of Dangen Entertainment.\nCopyright © 2017 Dangen Entertainment. All rights reserved.\n

554.99 1969-12-31 BR0 29 \N \N 2021-05-20 12:06:24.489-03 2021-05-20 12:06:24.545-03 122 Time Loader time-loader Time Loader Prologue is available here.\nTime Loader is a story-driven, physics-based puzzle platformer with a twist. At the helm of a small robot, you’ll travel


Time Loader Prologue is available here.


\nTime Loader is a story-driven, physics-based puzzle platformer with a twist. At the helm of a small robot, you’ll travel back to the 90s to prevent a tragic accident. Explore the house of your creator, solve brain-teasing puzzles, acquire unique and powerful upgrades, and see common household items from an entirely new perspective!\n



\nBut remember: meddling with time has serious consequences. You may succeed in changing the past, but can you deal with the result of your actions?\n

Gameplay Features:

\n Postmeta Games Limited. All rights reserved!\n

554.99 1969-12-31 BR0 87 \N \N 2021-05-20 12:06:24.274-03 2021-05-20 12:06:24.329-03 130 Almighty: Kill Your Gods almighty-kill-your-gods This game is currently in development\n Learn more about games in development.Visit the forums and learn more about this game. \n \n Hunt demon \n \n Hunt demons, monsters, and gods solo or online with friends in this action RPG. You are an Alpha, a magical warrior infused with the power of your ancestors. Run, leap and fly across islands, ripping your foes to pieces, and rebuilding your shattered Home Island with their remains. Bring low the oppressive false gods, protect your kindred and become Almighty.\n



554.99 1969-12-31 BR0 72 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.437-03 139 Warhammer 40,000: Battlesector warhammer-40000-battlesector Warhammer 40,000: Battlesector is a fast-paced turn-based strategy game set in the grimdark universe of the 41st Millenium. Pick your force, develop your army, \n \n \n \n Warhammer 40,000: Battlesector is a fast-paced turn-based strategy game set in the grimdark universe of the 41st Millenium. Pick your force, develop your army, field mighty heroes and fight for victory using superior strategy, awesome abilities, and devastating weaponry.

Age of Crimson Dawn

Experience an epic twenty mission single-player campaign that explores the aftermath of the Devastation of Baal. Help Sergeant Carleon and his allies purge the Tyranid infestation on Baal Secundus, and preserve the honour of the noble Blood Angels.

Skirmish Mode

Fight across the surface of Baal on maps of your choosing and select either the Blood Angels or the Tyranids in the Skirmish mode. Completely customize your army list by picking your units, heroes and their loadouts.

Forge Your Armies

Command iconic units like the Sanguinary Priest, the Librarian Dreadnought, and the Hive Tyrant to annihilate your foes. Use over 60 abilities and 50 weapons to orchestrate your opponent’s bloody demise.

Build Momentum

Each faction has a unique Momentum system that can result in a Surged unit. Units that Surge are able to string together superhuman chains of actions, or use the opportunity to further upgrade their abilities.

Call In Air Support

Use Command Points to call in faction-specific air support abilities. The Blood Angels Stormraven can obliterate xenos with a missile barrage, or deep strike a unit of veteran Assault Marines behind enemy lines. Meanwhile, the Tyranid Harpy can devastate the enemy defenses with its Sonic Screech, or scatter the battlefield with its deadly Spore Mines.

Face Your Friends On The Battlefield

With live and asynchronous multiplayer, and hotseat modes available, there’s no excuse not to take your friends to war.\n\n\n \n

\n Warhammer 40,000: Battlesector © Games Workshop Limited 2021. Warhammer 40,000: Battlesector, GW, Games Workshop, Space Marine, 40K, Warhammer, Warhammer 40,000, 40,000, the 'Aquila' Double-headed Eagle logo, and all associated logos, illustrations, image, names, creatures, races, vehicles, locations, weapons, characters, and the distinctive likeness thereof, are either ® or TM, and/or © Games Workshop Limited, variably registered around the world, and used under license.\n
Published by Slitherine Ltd. Developed by Black Lab Game Tech Pty Ltd. All rights reserved to their respective owners.\n

67.89 2021-07-14 BR0 65 \N \N 2021-05-20 12:06:24.489-03 2021-05-20 12:06:24.545-03 133 Vampire: The Masquerade® - Bloodlines™ 2 vampire-the-masquerade-bloodlines-2 What Monster Will You Be?\nEnter the World of Darkness and rise through vampire society. Experience Seattle - a city full of alluring, dangerous characters and f


What Monster Will You Be?

\nEnter the World of Darkness and rise through vampire society. Experience Seattle - a city full of alluring, dangerous characters and factions. In this sequel to the cult classic, your choices, plots and schemes will change the balance of power.\n

What Monster Will You Be?

Choose to be brutal and unflinching or cultured and seductive. Use charm, cunning, terror and sheer will to rise through vampire society. \n

Descend into Seattle’s Dark Heart 

Seattle has always been run by vampires; hunt your prey across locations faithfully reimagined in the World of Darkness.\n

Enter into Uneasy Alliances

Choose a side among the competing vampire factions in the war for Seattle’s blood trade. Everyone has hidden agendas, so choose your allies wisely\n

Experience the Story

Written by the creative mind behind the original Bloodlines, live out your vampire fantasy in a city filled with intriguing characters that react to your choices.\n\n\n \n

\n © 2019 Paradox Interactive AB. Vampire: The Masquerade® - Bloodlines™ are trademarks and/or registered trademarks of White Wolf Entertainment AB in Europe, the U.S., and other countries. Developed by Hardsuit Labs. All other trademarks, logos, and copyrights are the property of their respective owners.\n

109.99 1969-12-31 BR0 61 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.437-03 141 Cold Hearts cold-hearts Cold Hearts Demo is available here\n\nCold Hearts is a visual novel about refrigerators, loneliness and the meaning of life. Befriend and date household appliance


Cold Hearts Demo is available here

\n\nCold Hearts is a visual novel about refrigerators, loneliness and the meaning of life. Befriend and date household appliances, melt their frozen hearts, solve the crime story and uncover the truth - the real reason why these girl-fridges made contact with you, of all people!

\nDeveloped by two influencers and game developers, Outstar (The Witcher 3, Eventide: Slavic Fable) and Memoriesin8bit (Mothergunship) as a passion project to share the love for visual novels among those new to the genre, as well as experienced players.\n

Key features:

\n- no stats grinding to achieve your dream ending - all stories unfold solely by your decisions
\n- collectibles (fridge magnets) and multiple unlockable artworks in every path
\n- a mix of comedy and serious themes with sad undertones
\n- genderless protagonist - let your imagination run free and imagine any protagonist you like, as game won't mention your gender\n

Includes:

\n- 6 paths with multiple endings (including secret, unlockable path) and numerous decisions to be made
\n- 7 romanceable characters
\n- 20+ endings
\n- save, skip, rewind - all features you need to comfortably explore every route and ending\n\n \n

\n Copyright 2019 Outstar & Memoriesin8bit. All rights reserved.\n

554.99 1969-12-31 BR0 92 \N \N 2021-05-20 12:06:24.495-03 2021-05-20 12:06:24.55-03 135 No Longer Home no-longer-home Bo and Ao are graduating university and preparing to leave the flat they’ve lived in together for a year. Thanks to visa limitations, Ao is forced to return to
\nBo and Ao are graduating university and preparing to leave the flat they’ve lived in together for a year. Thanks to visa limitations, Ao is forced to return to Japan, leaving Bo in England. Disillusioned by post-educational life and shoved aside by a government who doesn’t want them there, both are trying to come to terms with their uncertain futures. And deep under their South London flat, something grows...\n




\nWander through an intimate flat and examine the everyday belongings of Bo and Ao. Have BBQs, play video games, and stay up late just talking in bed. Follow the day to day activities and conversations of two queer, non-binary students and their friends. Get to know Lu, the multi-eyed, animal-like new flatmate. \n




\nNo Longer Home was born when the developers were similarly forced apart after university, and decided to stay in touch by working on a game together. Development duo Hana and Cel chose this project as a way to explore and express the emotions that came with saying goodbye.\n



\n Copyright © 2021 Humble Grove Ltd. Published by Fellow Traveller®. Fellow Traveller is a registered trademark of Surprise Attack Proprietary Limited trading as Fellow Traveller Games. All right reserved.\n

554.99 1969-12-31 BR0 75 \N \N 2021-05-20 12:06:24.382-03 2021-05-20 12:06:24.441-03 144 Gloomwood gloomwood Gloomwood Demo is available hereWhat is Gloomwood?\nGloomwood is a stealth horror FPS that follows your mysterious abduction to a forgotten, twisted Victorian me
Gloomwood Demo is available here

What is Gloomwood?\n


Gloomwood is a stealth horror FPS that follows your mysterious abduction to a forgotten, twisted Victorian metropolis in the midst of a horrifying transformation. Wield your canesword and take to the shadows as you uncover the accursed mystery hidden within the fog.\n

\nFrom the producers of DUSK, AMID EVIL and FAITH comes a frightening, gothic immersive sim that will have you explore haunted streets, dark tunnels and decadent mansions.\n






\n © New Blood Interactive\n

554.99 1969-12-31 BR0 86 \N \N 2021-05-20 12:06:24.499-03 2021-05-20 12:06:24.548-03 124 Iron Harvest - Operation Eagle iron-harvest-operation-eagle Iron Harvest - Operation Eagle is included in the Iron Harvest Deluxe Edition.\n\n“Iron Harvest – Operation Eagle” is the new expansion to the critically acclaime

Iron Harvest - Operation Eagle is included in the Iron Harvest Deluxe Edition.



“Iron Harvest – Operation Eagle” is the new expansion to the critically acclaimed world of Iron Harvest set in the alternate reality of 1920+. 

War never ends…
In the aftermath of The Great War, the world is in chaos and borders are being redrawn. Usonia wants to make the 20th century “America’s Century” while an old enemy in the shadows tries to seize power. 

New Campaign
Experience a full new Iron Harvest campaign in single player or side-by-side in co-op in 7 challenging missions with over 25 minutes of new cinematics and dozens of new allies and enemies. 

New Faction: Usonia
The American Union of Usonia stayed out of the Great War and became an economic and military powerhouse, unnoticed by Europe’s old elites.
Usonia could become a beacon of hope for the oppressed, bringing freedom and justice to everyone, or it could succumb to the temptations of power and become a new empire, ruling with an iron first. 
The addon features the new faction “Usonia”, the 1920+ version of the US. More than 30 new infantry units, mechs and buildings for these factions. 

New Unit Type: Air Units!
Take to the sky and conquer the world with the introduction of new airship units for all factions. 
These early flying machines come in different classes, from the agile sky bike to the colossal battleship of the Usonian hero Admiral Mason, traversing any terrain and sending death from above. 
The bravest of men become Paratroopers who perform dangerous missions behind enemy lines.
Adapt your strategies and prepare your defenses with new anti – air mechanics for all Iron Harvest factions!

Iron Harvest © 2018 KING Art GmbH. "World Of 1920+" by Jakub Rozalski.

39.99 2021-05-26 BR0 41 \N 1 2021-05-20 12:06:24.274-03 2021-05-20 12:43:34.948-03 \. -- -- TOC entry 3384 (class 0 OID 549063) -- Dependencies: 235 -- Data for Name: games_platforms__platforms_games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.games_platforms__platforms_games (id, game_id, platform_id) FROM stdin; 1 1 1 2 2 1 3 3 1 4 4 1 5 3 3 6 5 1 7 6 1 8 7 1 9 8 1 10 9 1 11 10 1 12 11 1 13 12 1 14 13 1 15 14 1 16 9 3 17 12 3 18 9 2 19 12 2 20 15 1 21 16 1 22 17 1 23 15 3 24 17 3 25 19 1 26 20 1 27 21 1 28 22 1 29 18 1 30 17 2 31 19 3 32 19 2 33 23 1 34 24 1 35 24 2 36 25 1 37 27 1 38 26 1 39 27 3 40 28 1 41 29 1 42 30 1 43 27 2 44 29 3 45 30 3 46 31 1 47 30 2 48 32 1 49 33 1 50 32 3 51 34 1 52 36 1 53 37 1 54 35 1 55 38 1 56 39 1 57 40 1 58 38 3 59 39 3 60 40 3 61 41 1 62 42 1 63 39 2 64 40 2 65 41 2 66 42 3 67 43 1 68 44 1 69 45 1 70 45 2 71 46 1 72 47 1 73 48 1 74 49 1 75 49 2 76 50 1 77 51 1 78 52 1 79 53 1 80 55 1 81 54 1 82 56 1 83 57 1 84 58 1 85 59 1 86 60 1 87 61 1 88 56 3 89 57 3 90 61 3 91 56 2 92 61 2 93 62 1 94 62 2 95 63 1 96 64 1 97 65 1 98 66 1 99 67 1 100 68 1 101 63 3 102 67 3 103 68 3 104 69 1 105 63 2 106 67 2 107 68 2 108 69 3 109 70 1 110 71 1 111 70 3 112 72 1 113 73 1 114 74 1 115 73 3 116 75 1 117 76 1 118 77 1 119 78 1 120 79 1 121 80 1 122 81 1 123 81 3 124 81 2 125 82 1 126 84 1 127 85 1 128 83 1 129 84 3 130 85 3 131 83 3 132 86 1 133 87 1 134 88 1 135 89 1 136 90 1 137 84 2 138 85 2 139 88 3 140 88 2 141 91 1 142 92 1 143 92 3 144 93 1 145 94 1 146 96 1 147 97 1 148 95 1 149 93 2 150 96 3 151 95 3 152 96 2 153 95 2 154 98 1 155 99 1 156 104 1 157 100 1 158 101 1 159 102 1 160 103 1 161 105 1 162 106 1 163 111 1 164 107 1 165 108 1 166 110 1 167 109 1 168 112 1 169 113 1 170 114 1 171 115 1 172 118 1 173 119 1 174 120 1 175 121 1 176 122 1 177 123 1 178 124 1 179 116 1 180 117 1 181 125 1 182 127 1 183 128 1 184 129 1 185 130 1 186 131 1 190 131 3 194 131 2 207 143 1 210 143 3 187 132 1 204 140 1 206 140 3 188 133 1 202 141 1 205 141 3 209 141 2 189 126 1 191 126 3 195 126 2 192 134 1 203 142 1 193 135 1 196 135 3 208 144 1 197 136 1 201 136 3 198 137 1 199 138 1 200 139 1 \. -- -- TOC entry 3386 (class 0 OID 549071) -- Dependencies: 237 -- Data for Name: homes; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.homes (id, published_at, created_by, updated_by, created_at, updated_at) FROM stdin; 1 2021-05-20 12:12:33.563-03 1 1 2021-05-20 12:12:32.041-03 2021-05-20 12:12:33.62-03 \. -- -- TOC entry 3388 (class 0 OID 549081) -- Dependencies: 239 -- Data for Name: homes_components; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.homes_components (id, field, "order", component_type, component_id, home_id) FROM stdin; 1 newGames 1 components_page_sections 1 1 2 upcomingGames 1 components_page_sections 2 1 3 freeGames 1 components_page_sections 3 1 4 popularGames 1 components_page_popular_games 1 1 \. -- -- TOC entry 3390 (class 0 OID 549097) -- Dependencies: 241 -- Data for Name: orders; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.orders (id, "user", payment_intent_id, card_brand, card_last4, total_in_cents, created_by, updated_by, created_at, updated_at) FROM stdin; \. -- -- TOC entry 3392 (class 0 OID 549110) -- Dependencies: 243 -- Data for Name: orders__games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.orders__games (id, order_id, game_id) FROM stdin; \. -- -- TOC entry 3394 (class 0 OID 549118) -- Dependencies: 245 -- Data for Name: platforms; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.platforms (id, name, slug, created_by, updated_by, created_at, updated_at) FROM stdin; 1 windows windows \N \N 2021-05-20 12:02:45.67-03 2021-05-20 12:02:45.67-03 2 linux linux \N \N 2021-05-20 12:02:45.671-03 2021-05-20 12:02:45.671-03 3 mac mac \N \N 2021-05-20 12:02:45.671-03 2021-05-20 12:02:45.671-03 \. -- -- TOC entry 3396 (class 0 OID 549135) -- Dependencies: 247 -- Data for Name: publishers; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.publishers (id, name, slug, created_by, updated_by, created_at, updated_at) FROM stdin; 1 CD PROJEKT RED cd-projekt-red \N \N 2021-05-20 12:02:45.47-03 2021-05-20 12:02:45.47-03 2 THQ Nordic GmbH thq-nordic-gmbh \N \N 2021-05-20 12:02:45.47-03 2021-05-20 12:02:45.47-03 3 Activision activision \N \N 2021-05-20 12:02:45.47-03 2021-05-20 12:02:45.47-03 4 Ravenscourt ravenscourt \N \N 2021-05-20 12:02:45.47-03 2021-05-20 12:02:45.47-03 5 Larian Studios larian-studios \N \N 2021-05-20 12:02:45.47-03 2021-05-20 12:02:45.47-03 6 Ubisoft ubisoft \N \N 2021-05-20 12:02:45.501-03 2021-05-20 12:02:45.501-03 7 Ziggurat Interactive ziggurat-interactive \N \N 2021-05-20 12:02:45.503-03 2021-05-20 12:02:45.503-03 8 Bugbyte Ltd. bugbyte-ltd \N \N 2021-05-20 12:02:45.503-03 2021-05-20 12:02:45.503-03 9 Blizzard Entertainment, Inc. blizzard-entertainment-inc \N \N 2021-05-20 12:02:45.504-03 2021-05-20 12:02:45.504-03 10 Polymorph Games polymorph-games \N \N 2021-05-20 12:02:45.504-03 2021-05-20 12:02:45.504-03 11 Lo-Fi Games lo-fi-games \N \N 2021-05-20 12:02:45.504-03 2021-05-20 12:02:45.504-03 12 SeithCG seithcg \N \N 2021-05-20 12:02:45.505-03 2021-05-20 12:02:45.505-03 13 Bethesda Softworks LLC bethesda-softworks-llc \N \N 2021-05-20 12:02:45.505-03 2021-05-20 12:02:45.505-03 14 Coffee Stain Publishing coffee-stain-publishing \N \N 2021-05-20 12:02:45.505-03 2021-05-20 12:02:45.505-03 15 Hasbro Inc. hasbro-inc \N \N 2021-05-20 12:02:45.505-03 2021-05-20 12:02:45.505-03 16 Heart Machine heart-machine \N \N 2021-05-20 12:02:45.534-03 2021-05-20 12:02:45.534-03 17 ZA/UM zaum \N \N 2021-05-20 12:02:45.537-03 2021-05-20 12:02:45.537-03 18 Thunder Lotus Games thunder-lotus-games \N \N 2021-05-20 12:02:45.537-03 2021-05-20 12:02:45.537-03 19 Konami Digital Entertainment konami-digital-entertainment \N \N 2021-05-20 12:02:45.537-03 2021-05-20 12:02:45.537-03 20 8BitSkull 8bitskull \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 21 Draw Distance draw-distance \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 22 Walkabout walkabout \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 23 Forever Entertainment S. A. forever-entertainment-s-a \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 24 MWM Interactive mwm-interactive \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 25 HuniePot huniepot \N \N 2021-05-20 12:02:45.538-03 2021-05-20 12:02:45.538-03 26 Devolver Digital devolver-digital \N \N 2021-05-20 12:02:45.566-03 2021-05-20 12:02:45.566-03 27 Madruga Works madruga-works \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 28 Toukana Interactive toukana-interactive \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 29 DANGEN Entertainment dangen-entertainment \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 30 inkle Ltd inkle-ltd \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 31 Chucklefish chucklefish \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 32 The Arcade Crew the-arcade-crew \N \N 2021-05-20 12:02:45.569-03 2021-05-20 12:02:45.569-03 33 Ysbryd Games ysbryd-games \N \N 2021-05-20 12:03:51.524-03 2021-05-20 12:03:51.524-03 34 Eugen Systems eugen-systems \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 35 NIS America, Inc. nis-america-inc \N \N 2021-05-20 12:04:15.902-03 2021-05-20 12:04:15.902-03 36 Stellar Jockeys stellar-jockeys \N \N 2021-05-20 12:04:15.912-03 2021-05-20 12:04:15.912-03 37 Asmodee Digital asmodee-digital \N \N 2021-05-20 12:04:15.916-03 2021-05-20 12:04:15.916-03 38 Digital Dreams Entertainment LLC digital-dreams-entertainment-llc \N \N 2021-05-20 12:04:15.916-03 2021-05-20 12:04:15.916-03 39 Idea Factory International idea-factory-international \N \N 2021-05-20 12:04:15.929-03 2021-05-20 12:04:15.929-03 40 Motion Twin motion-twin \N \N 2021-05-20 12:04:15.934-03 2021-05-20 12:04:15.934-03 41 Deep Silver deep-silver \N \N 2021-05-20 12:04:15.934-03 2021-05-20 12:04:15.934-03 42 Warhorse Studios warhorse-studios \N \N 2021-05-20 12:04:15.934-03 2021-05-20 12:04:15.934-03 43 The Irregular Corporation the-irregular-corporation \N \N 2021-05-20 12:04:15.934-03 2021-05-20 12:04:15.934-03 44 Daedalic Entertainment daedalic-entertainment \N \N 2021-05-20 12:04:15.944-03 2021-05-20 12:04:15.944-03 45 Obsidian Entertainment obsidian-entertainment \N \N 2021-05-20 12:04:15.947-03 2021-05-20 12:04:15.947-03 46 VLG Publishing vlg-publishing \N \N 2021-05-20 12:04:15.947-03 2021-05-20 12:04:15.947-03 47 Focus Home Interactive focus-home-interactive \N \N 2021-05-20 12:04:15.948-03 2021-05-20 12:04:15.948-03 48 Good Shepherd Entertainment\t good-shepherd-entertainment \N \N 2021-05-20 12:04:15.95-03 2021-05-20 12:04:15.95-03 49 IMGN.PRO imgnpro \N \N 2021-05-20 12:04:15.96-03 2021-05-20 12:04:15.96-03 50 Dekovir Entertainment dekovir-entertainment \N \N 2021-05-20 12:04:15.966-03 2021-05-20 12:04:15.966-03 51 Goldhawk Interactive goldhawk-interactive \N \N 2021-05-20 12:04:15.966-03 2021-05-20 12:04:15.966-03 52 MangaGamer mangagamer \N \N 2021-05-20 12:04:15.971-03 2021-05-20 12:04:15.971-03 53 Raw Fury raw-fury \N \N 2021-05-20 12:04:15.971-03 2021-05-20 12:04:15.971-03 54 Revolution Software revolution-software \N \N 2021-05-20 12:04:15.974-03 2021-05-20 12:04:15.974-03 55 Eclipse Productions eclipse-productions \N \N 2021-05-20 12:04:15.976-03 2021-05-20 12:04:15.976-03 56 Electronic Arts electronic-arts \N \N 2021-05-20 12:04:15.977-03 2021-05-20 12:04:15.977-03 57 Robit Studios robit-studios \N \N 2021-05-20 12:04:15.98-03 2021-05-20 12:04:15.98-03 58 The Brotherhood the-brotherhood \N \N 2021-05-20 12:04:15.98-03 2021-05-20 12:04:15.98-03 59 Lost Pilgrims Studio lost-pilgrims-studio \N \N 2021-05-20 12:04:15.989-03 2021-05-20 12:04:15.989-03 60 Red Hook Studios red-hook-studios \N \N 2021-05-20 12:04:15.997-03 2021-05-20 12:04:15.997-03 61 Paradox Interactive paradox-interactive \N \N 2021-05-20 12:04:16.019-03 2021-05-20 12:04:16.019-03 62 Headup headup \N \N 2021-05-20 12:04:16.024-03 2021-05-20 12:04:16.024-03 63 Team17 Digital LTD. team17-digital-ltd \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 64 Night Dive Studios night-dive-studios \N \N 2021-05-20 12:06:07.708-03 2021-05-20 12:06:07.708-03 65 Slitherine Ltd. slitherine-ltd \N \N 2021-05-20 12:06:07.711-03 2021-05-20 12:06:07.711-03 66 Disney/Lucasfilm disneylucasfilm \N \N 2021-05-20 12:06:07.721-03 2021-05-20 12:06:07.721-03 67 PM Studios pm-studios \N \N 2021-05-20 12:06:07.736-03 2021-05-20 12:06:07.736-03 68 Caligari Games, WhisperGames caligari-games-whispergames \N \N 2021-05-20 12:06:07.738-03 2021-05-20 12:06:07.738-03 69 Red Martyr Entertainment red-martyr-entertainment \N \N 2021-05-20 12:06:07.74-03 2021-05-20 12:06:07.74-03 70 Alien Pixel Studios alien-pixel-studios \N \N 2021-05-20 12:06:07.74-03 2021-05-20 12:06:07.74-03 71 United Label, CI Games united-label-ci-games \N \N 2021-05-20 12:06:07.74-03 2021-05-20 12:06:07.74-03 72 Versus Evil versus-evil \N \N 2021-05-20 12:06:07.741-03 2021-05-20 12:06:07.741-03 73 DotEmu dotemu \N \N 2021-05-20 12:06:07.741-03 2021-05-20 12:06:07.741-03 74 Ceres Games ceres-games \N \N 2021-05-20 12:06:07.741-03 2021-05-20 12:06:07.741-03 75 Fellow Traveller fellow-traveller \N \N 2021-05-20 12:06:07.749-03 2021-05-20 12:06:07.749-03 76 Dear Villagers dear-villagers \N \N 2021-05-20 12:06:07.753-03 2021-05-20 12:06:07.753-03 77 Crytivo crytivo \N \N 2021-05-20 12:06:07.765-03 2021-05-20 12:06:07.765-03 78 Sold Out sold-out \N \N 2021-05-20 12:06:07.767-03 2021-05-20 12:06:07.767-03 79 Bedtime Digital Games bedtime-digital-games \N \N 2021-05-20 12:06:07.77-03 2021-05-20 12:06:07.77-03 80 Backwoods Entertainment backwoods-entertainment \N \N 2021-05-20 12:06:07.77-03 2021-05-20 12:06:07.77-03 81 tinyBuild tinybuild \N \N 2021-05-20 12:06:07.77-03 2021-05-20 12:06:07.77-03 82 Cyan Worlds cyan-worlds \N \N 2021-05-20 12:06:07.77-03 2021-05-20 12:06:07.77-03 83 COWCAT cowcat \N \N 2021-05-20 12:06:07.77-03 2021-05-20 12:06:07.77-03 84 Mixtvision mixtvision \N \N 2021-05-20 12:06:07.779-03 2021-05-20 12:06:07.779-03 85 Maximum Games maximum-games \N \N 2021-05-20 12:06:07.783-03 2021-05-20 12:06:07.783-03 86 New Blood Interactive new-blood-interactive \N \N 2021-05-20 12:06:07.783-03 2021-05-20 12:06:07.783-03 87 META Publishing meta-publishing \N \N 2021-05-20 12:06:07.798-03 2021-05-20 12:06:07.798-03 88 Roman Glebenkov roman-glebenkov \N \N 2021-05-20 12:06:07.8-03 2021-05-20 12:06:07.8-03 89 Crytivo Games crytivo-games \N \N 2021-05-20 12:06:07.803-03 2021-05-20 12:06:07.803-03 90 Starni Games starni-games \N \N 2021-05-20 12:06:07.803-03 2021-05-20 12:06:07.803-03 91 Wadjet Eye Games wadjet-eye-games \N \N 2021-05-20 12:06:07.803-03 2021-05-20 12:06:07.803-03 92 Outstar & Memoriesin8bit outstar-and-memoriesin8bit \N \N 2021-05-20 12:06:07.803-03 2021-05-20 12:06:07.803-03 93 Plug In Digital plug-in-digital \N \N 2021-05-20 12:06:07.828-03 2021-05-20 12:06:07.828-03 94 Senscape senscape \N \N 2021-05-20 12:06:07.828-03 2021-05-20 12:06:07.828-03 95 Event Horizon event-horizon \N \N 2021-05-20 12:06:07.828-03 2021-05-20 12:06:07.828-03 96 Eremite Games eremite-games \N \N 2021-05-20 12:06:07.828-03 2021-05-20 12:06:07.828-03 97 Serious Brothers serious-brothers \N \N 2021-05-20 12:06:07.833-03 2021-05-20 12:06:07.833-03 98 Dear Villagers, Maple Whispering Limited dear-villagers-maple-whispering-limited \N \N 2021-05-20 12:06:07.842-03 2021-05-20 12:06:07.842-03 \. -- -- TOC entry 3398 (class 0 OID 549152) -- Dependencies: 249 -- Data for Name: recommendeds; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.recommendeds (id, created_by, updated_by, created_at, updated_at) FROM stdin; 1 1 1 2021-05-20 12:13:25.398-03 2021-05-20 12:13:25.444-03 \. -- -- TOC entry 3400 (class 0 OID 549162) -- Dependencies: 251 -- Data for Name: recommendeds_components; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.recommendeds_components (id, field, "order", component_type, component_id, recommended_id) FROM stdin; 1 section 1 components_page_popular_games 2 1 \. -- -- TOC entry 3412 (class 0 OID 549239) -- Dependencies: 263 -- Data for Name: strapi_administrator; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.strapi_administrator (id, firstname, lastname, username, email, password, "resetPasswordToken", "registrationToken", "isActive", blocked, "preferedLanguage") FROM stdin; 1 Won Games \N wongames@wongames.com $2a$10$SxLIaibNll627ALPzw.NReSq1Qjd1OkkYGn3ouEF3XKuNvSLThMmW \N \N t \N \N \. -- -- TOC entry 3408 (class 0 OID 549209) -- Dependencies: 259 -- Data for Name: strapi_permission; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.strapi_permission (id, action, subject, properties, conditions, role, created_at, updated_at) FROM stdin; 1 plugins::content-manager.explorer.create application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 2 2021-05-20 11:56:33.469-03 2021-05-20 11:56:33.479-03 2 plugins::content-manager.explorer.create application::category.category {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.469-03 2021-05-20 11:56:33.48-03 3 plugins::content-manager.explorer.create application::developer.developer {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.469-03 2021-05-20 11:56:33.48-03 4 plugins::content-manager.explorer.create application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.48-03 5 plugins::content-manager.explorer.create application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.48-03 6 plugins::content-manager.explorer.create application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.48-03 7 plugins::content-manager.explorer.create application::platform.platform {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.48-03 8 plugins::content-manager.explorer.create application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.48-03 10 plugins::content-manager.explorer.create application::wishlist.wishlist {"fields": ["user", "games"]} [] 2 2021-05-20 11:56:33.473-03 2021-05-20 11:56:33.482-03 9 plugins::content-manager.explorer.create application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 2 2021-05-20 11:56:33.47-03 2021-05-20 11:56:33.482-03 11 plugins::content-manager.explorer.create plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 2 2021-05-20 11:56:33.496-03 2021-05-20 11:56:33.505-03 12 plugins::content-manager.explorer.read application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 2 2021-05-20 11:56:33.496-03 2021-05-20 11:56:33.505-03 14 plugins::content-manager.explorer.read application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 2 2021-05-20 11:56:33.498-03 2021-05-20 11:56:33.507-03 15 plugins::content-manager.explorer.read application::developer.developer {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.498-03 2021-05-20 11:56:33.507-03 13 plugins::content-manager.explorer.read application::category.category {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.496-03 2021-05-20 11:56:33.507-03 17 plugins::content-manager.explorer.read application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 2 2021-05-20 11:56:33.5-03 2021-05-20 11:56:33.511-03 22 plugins::content-manager.explorer.read plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 2 2021-05-20 11:56:33.527-03 2021-05-20 11:56:33.539-03 23 plugins::content-manager.explorer.update application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 2 2021-05-20 11:56:33.527-03 2021-05-20 11:56:33.539-03 21 plugins::content-manager.explorer.read application::wishlist.wishlist {"fields": ["user", "games"]} [] 2 2021-05-20 11:56:33.526-03 2021-05-20 11:56:33.539-03 24 plugins::content-manager.explorer.update application::category.category {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.527-03 2021-05-20 11:56:33.541-03 28 plugins::content-manager.explorer.update application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 2 2021-05-20 11:56:33.533-03 2021-05-20 11:56:33.544-03 31 plugins::content-manager.explorer.update application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 2 2021-05-20 11:56:33.557-03 2021-05-20 11:56:33.565-03 34 plugins::content-manager.explorer.delete application::banner.banner {} [] 2 2021-05-20 11:56:33.558-03 2021-05-20 11:56:33.568-03 35 plugins::content-manager.explorer.delete application::category.category {} [] 2 2021-05-20 11:56:33.558-03 2021-05-20 11:56:33.568-03 32 plugins::content-manager.explorer.update application::wishlist.wishlist {"fields": ["user", "games"]} [] 2 2021-05-20 11:56:33.557-03 2021-05-20 11:56:33.568-03 42 plugins::content-manager.explorer.delete application::recommended.recommended {} [] 2 2021-05-20 11:56:33.585-03 2021-05-20 11:56:33.594-03 45 plugins::content-manager.explorer.delete plugins::email-designer.email-template {} [] 2 2021-05-20 11:56:33.587-03 2021-05-20 11:56:33.596-03 43 plugins::content-manager.explorer.delete application::wishlist.wishlist {} [] 2 2021-05-20 11:56:33.586-03 2021-05-20 11:56:33.596-03 49 plugins::upload.assets.update \N {} [] 2 2021-05-20 11:56:33.589-03 2021-05-20 11:56:33.599-03 53 plugins::content-manager.explorer.create application::category.category {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 63 plugins::content-manager.explorer.read application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.651-03 2021-05-20 11:56:33.661-03 16 plugins::content-manager.explorer.read application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 2 2021-05-20 11:56:33.499-03 2021-05-20 11:56:33.511-03 25 plugins::content-manager.explorer.update application::developer.developer {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.53-03 2021-05-20 11:56:33.541-03 33 plugins::content-manager.explorer.update plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 2 2021-05-20 11:56:33.558-03 2021-05-20 11:56:33.567-03 41 plugins::content-manager.explorer.delete application::publisher.publisher {} [] 2 2021-05-20 11:56:33.585-03 2021-05-20 11:56:33.594-03 51 plugins::upload.assets.copy-link \N {} [] 2 2021-05-20 11:56:33.612-03 2021-05-20 11:56:33.614-03 52 plugins::content-manager.explorer.create application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 62 plugins::content-manager.explorer.create plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.651-03 2021-05-20 11:56:33.661-03 72 plugins::content-manager.explorer.read application::wishlist.wishlist {"fields": ["user", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.682-03 2021-05-20 11:56:33.691-03 82 plugins::content-manager.explorer.update application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.711-03 2021-05-20 11:56:33.719-03 95 plugins::upload.read \N {} ["admin::is-creator"] 3 2021-05-20 11:56:33.739-03 2021-05-20 11:56:33.747-03 107 plugins::content-manager.explorer.create application::platform.platform {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.798-03 2021-05-20 11:56:33.807-03 113 plugins::content-manager.explorer.read application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 1 2021-05-20 11:56:33.824-03 2021-05-20 11:56:33.833-03 122 plugins::content-manager.explorer.read application::wishlist.wishlist {"fields": ["user", "games"]} [] 1 2021-05-20 11:56:33.85-03 2021-05-20 11:56:33.86-03 159 plugins::content-manager.single-types.configure-view \N {} [] 1 2021-05-20 11:56:33.939-03 2021-05-20 11:56:33.949-03 168 plugins::users-permissions.email-templates.read \N {} [] 1 2021-05-20 11:56:33.965-03 2021-05-20 11:56:33.974-03 178 admin::webhooks.delete \N {} [] 1 2021-05-20 11:56:33.992-03 2021-05-20 11:56:34.001-03 243 plugins::content-manager.explorer.delete application::developer.developer {} [] 1 2021-05-20 13:17:09.354-03 2021-05-20 13:17:09.369-03 253 plugins::content-manager.explorer.delete plugins::email-designer.email-template {} [] 1 2021-05-20 13:17:09.39-03 2021-05-20 13:17:09.395-03 18 plugins::content-manager.explorer.read application::platform.platform {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.5-03 2021-05-20 11:56:33.511-03 27 plugins::content-manager.explorer.update application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 2 2021-05-20 11:56:33.533-03 2021-05-20 11:56:33.544-03 37 plugins::content-manager.explorer.delete application::game.game {} [] 2 2021-05-20 11:56:33.56-03 2021-05-20 11:56:33.57-03 46 plugins::content-manager.explorer.publish application::home.home {} [] 2 2021-05-20 11:56:33.589-03 2021-05-20 11:56:33.599-03 57 plugins::content-manager.explorer.create application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 69 plugins::content-manager.explorer.read application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.654-03 2021-05-20 11:56:33.663-03 77 plugins::content-manager.explorer.update application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.684-03 2021-05-20 11:56:33.694-03 85 plugins::content-manager.explorer.delete application::banner.banner {} ["admin::is-creator"] 3 2021-05-20 11:56:33.712-03 2021-05-20 11:56:33.721-03 92 plugins::content-manager.explorer.delete application::recommended.recommended {} ["admin::is-creator"] 3 2021-05-20 11:56:33.738-03 2021-05-20 11:56:33.747-03 109 plugins::content-manager.explorer.create application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 1 2021-05-20 11:56:33.798-03 2021-05-20 11:56:33.81-03 120 plugins::content-manager.explorer.read application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.837-03 128 plugins::content-manager.explorer.update application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.863-03 154 plugins::upload.assets.create \N {} [] 1 2021-05-20 11:56:33.937-03 2021-05-20 11:56:33.946-03 162 plugins::users-permissions.roles.create \N {} [] 1 2021-05-20 11:56:33.961-03 2021-05-20 11:56:33.97-03 173 admin::marketplace.plugins.install \N {} [] 1 2021-05-20 11:56:33.988-03 2021-05-20 11:56:33.999-03 244 plugins::content-manager.explorer.delete application::category.category {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 256 plugins::content-manager.explorer.publish application::home.home {} [] 1 2021-05-20 13:17:09.39-03 2021-05-20 13:17:09.397-03 19 plugins::content-manager.explorer.read application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.5-03 2021-05-20 11:56:33.511-03 29 plugins::content-manager.explorer.update application::platform.platform {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.533-03 2021-05-20 11:56:33.544-03 40 plugins::content-manager.explorer.delete application::platform.platform {} [] 2 2021-05-20 11:56:33.561-03 2021-05-20 11:56:33.57-03 50 plugins::upload.assets.download \N {} [] 2 2021-05-20 11:56:33.589-03 2021-05-20 11:56:33.599-03 54 plugins::content-manager.explorer.create application::developer.developer {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 64 plugins::content-manager.explorer.read application::category.category {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.651-03 2021-05-20 11:56:33.661-03 75 plugins::content-manager.explorer.update application::category.category {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.682-03 2021-05-20 11:56:33.694-03 89 plugins::content-manager.explorer.delete application::home.home {} ["admin::is-creator"] 3 2021-05-20 11:56:33.713-03 2021-05-20 11:56:33.722-03 100 plugins::upload.assets.update \N {} ["admin::is-creator"] 3 2021-05-20 11:56:33.741-03 2021-05-20 11:56:33.75-03 103 plugins::content-manager.explorer.create application::developer.developer {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.797-03 2021-05-20 11:56:33.807-03 117 plugins::content-manager.explorer.read application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.836-03 125 plugins::content-manager.explorer.update application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.862-03 134 plugins::content-manager.explorer.update application::wishlist.wishlist {"fields": ["user", "games"]} [] 1 2021-05-20 11:56:33.88-03 2021-05-20 11:56:33.892-03 151 plugins::content-type-builder.read \N {} [] 1 2021-05-20 11:56:33.933-03 2021-05-20 11:56:33.944-03 164 plugins::users-permissions.roles.update \N {} [] 1 2021-05-20 11:56:33.962-03 2021-05-20 11:56:33.97-03 176 admin::webhooks.read \N {} [] 1 2021-05-20 11:56:33.99-03 2021-05-20 11:56:33.999-03 184 admin::roles.read \N {} [] 1 2021-05-20 11:56:34.015-03 2021-05-20 11:56:34.021-03 245 plugins::content-manager.explorer.delete application::banner.banner {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 254 plugins::content-manager.explorer.delete plugins::users-permissions.user {} [] 1 2021-05-20 13:17:09.39-03 2021-05-20 13:17:09.396-03 20 plugins::content-manager.explorer.read application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 2 2021-05-20 11:56:33.5-03 2021-05-20 11:56:33.511-03 30 plugins::content-manager.explorer.update application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 2 2021-05-20 11:56:33.533-03 2021-05-20 11:56:33.544-03 38 plugins::content-manager.explorer.delete application::home.home {} [] 2 2021-05-20 11:56:33.561-03 2021-05-20 11:56:33.57-03 47 plugins::upload.read \N {} [] 2 2021-05-20 11:56:33.589-03 2021-05-20 11:56:33.599-03 56 plugins::content-manager.explorer.create application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 66 plugins::content-manager.explorer.read application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.652-03 2021-05-20 11:56:33.661-03 78 plugins::content-manager.explorer.update application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.684-03 2021-05-20 11:56:33.694-03 86 plugins::content-manager.explorer.delete application::category.category {} ["admin::is-creator"] 3 2021-05-20 11:56:33.712-03 2021-05-20 11:56:33.722-03 93 plugins::content-manager.explorer.delete application::wishlist.wishlist {} ["admin::is-creator"] 3 2021-05-20 11:56:33.738-03 2021-05-20 11:56:33.747-03 108 plugins::content-manager.explorer.create application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.798-03 2021-05-20 11:56:33.808-03 119 plugins::content-manager.explorer.read application::platform.platform {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.836-03 127 plugins::content-manager.explorer.update application::developer.developer {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.862-03 135 plugins::content-manager.explorer.update plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 1 2021-05-20 11:56:33.88-03 2021-05-20 11:56:33.892-03 153 plugins::upload.read \N {} [] 1 2021-05-20 11:56:33.937-03 2021-05-20 11:56:33.946-03 161 plugins::content-manager.components.configure-layout \N {} [] 1 2021-05-20 11:56:33.961-03 2021-05-20 11:56:33.97-03 171 plugins::users-permissions.advanced-settings.update \N {} [] 1 2021-05-20 11:56:33.988-03 2021-05-20 11:56:33.997-03 181 admin::users.update \N {} [] 1 2021-05-20 11:56:34.014-03 2021-05-20 11:56:34.021-03 246 plugins::content-manager.explorer.delete application::game.game {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 26 plugins::content-manager.explorer.update application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 2 2021-05-20 11:56:33.533-03 2021-05-20 11:56:33.544-03 36 plugins::content-manager.explorer.delete application::developer.developer {} [] 2 2021-05-20 11:56:33.56-03 2021-05-20 11:56:33.57-03 44 plugins::content-manager.explorer.publish application::banner.banner {} [] 2 2021-05-20 11:56:33.587-03 2021-05-20 11:56:33.596-03 60 plugins::content-manager.explorer.create application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.625-03 2021-05-20 11:56:33.637-03 71 plugins::content-manager.explorer.read application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.656-03 2021-05-20 11:56:33.667-03 81 plugins::content-manager.explorer.update application::publisher.publisher {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.687-03 2021-05-20 11:56:33.697-03 91 plugins::content-manager.explorer.delete application::platform.platform {} ["admin::is-creator"] 3 2021-05-20 11:56:33.715-03 2021-05-20 11:56:33.724-03 98 plugins::upload.assets.download \N {} [] 3 2021-05-20 11:56:33.741-03 2021-05-20 11:56:33.749-03 105 plugins::content-manager.explorer.create application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 1 2021-05-20 11:56:33.798-03 2021-05-20 11:56:33.807-03 115 plugins::content-manager.explorer.read application::developer.developer {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.836-03 123 plugins::content-manager.explorer.read plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 1 2021-05-20 11:56:33.851-03 2021-05-20 11:56:33.86-03 131 plugins::content-manager.explorer.update application::platform.platform {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.877-03 2021-05-20 11:56:33.887-03 158 plugins::upload.settings.read \N {} [] 1 2021-05-20 11:56:33.939-03 2021-05-20 11:56:33.948-03 166 plugins::users-permissions.providers.update \N {} [] 1 2021-05-20 11:56:33.963-03 2021-05-20 11:56:33.972-03 174 admin::marketplace.plugins.uninstall \N {} [] 1 2021-05-20 11:56:33.99-03 2021-05-20 11:56:33.999-03 182 admin::users.delete \N {} [] 1 2021-05-20 11:56:34.015-03 2021-05-20 11:56:34.021-03 247 plugins::content-manager.explorer.delete application::home.home {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 39 plugins::content-manager.explorer.delete application::order.order {} [] 2 2021-05-20 11:56:33.561-03 2021-05-20 11:56:33.57-03 48 plugins::upload.assets.create \N {} [] 2 2021-05-20 11:56:33.589-03 2021-05-20 11:56:33.599-03 55 plugins::content-manager.explorer.create application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.624-03 2021-05-20 11:56:33.635-03 65 plugins::content-manager.explorer.read application::developer.developer {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.652-03 2021-05-20 11:56:33.661-03 74 plugins::content-manager.explorer.update application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.682-03 2021-05-20 11:56:33.692-03 88 plugins::content-manager.explorer.delete application::game.game {} ["admin::is-creator"] 3 2021-05-20 11:56:33.713-03 2021-05-20 11:56:33.722-03 96 plugins::upload.assets.create \N {} [] 3 2021-05-20 11:56:33.739-03 2021-05-20 11:56:33.748-03 102 plugins::content-manager.explorer.create application::category.category {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.797-03 2021-05-20 11:56:33.807-03 112 plugins::content-manager.explorer.create plugins::users-permissions.user {"fields": ["username", "email", "provider", "password", "resetPasswordToken", "confirmationToken", "confirmed", "blocked", "role"]} [] 1 2021-05-20 11:56:33.824-03 2021-05-20 11:56:33.833-03 121 plugins::content-manager.explorer.read application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 1 2021-05-20 11:56:33.849-03 2021-05-20 11:56:33.858-03 132 plugins::content-manager.explorer.update application::publisher.publisher {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.877-03 2021-05-20 11:56:33.889-03 157 plugins::upload.assets.copy-link \N {} [] 1 2021-05-20 11:56:33.937-03 2021-05-20 11:56:33.946-03 167 plugins::users-permissions.providers.read \N {} [] 1 2021-05-20 11:56:33.963-03 2021-05-20 11:56:33.972-03 175 admin::webhooks.create \N {} [] 1 2021-05-20 11:56:33.99-03 2021-05-20 11:56:33.999-03 183 admin::roles.create \N {} [] 1 2021-05-20 11:56:34.015-03 2021-05-20 11:56:34.021-03 248 plugins::content-manager.explorer.delete application::order.order {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 58 plugins::content-manager.explorer.create application::platform.platform {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.625-03 2021-05-20 11:56:33.635-03 67 plugins::content-manager.explorer.read application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.652-03 2021-05-20 11:56:33.664-03 79 plugins::content-manager.explorer.update application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.684-03 2021-05-20 11:56:33.694-03 87 plugins::content-manager.explorer.delete application::developer.developer {} ["admin::is-creator"] 3 2021-05-20 11:56:33.713-03 2021-05-20 11:56:33.722-03 94 plugins::content-manager.explorer.delete plugins::email-designer.email-template {} ["admin::is-creator"] 3 2021-05-20 11:56:33.738-03 2021-05-20 11:56:33.747-03 106 plugins::content-manager.explorer.create application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 1 2021-05-20 11:56:33.798-03 2021-05-20 11:56:33.807-03 116 plugins::content-manager.explorer.read application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.836-03 124 plugins::content-manager.explorer.read plugins::users-permissions.user {"fields": ["username", "email", "provider", "password", "resetPasswordToken", "confirmationToken", "confirmed", "blocked", "role"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.862-03 133 plugins::content-manager.explorer.update application::recommended.recommended {"fields": ["section.title", "section.highlight.title", "section.highlight.subtitle", "section.highlight.background", "section.highlight.floatImage", "section.highlight.buttonLabel", "section.highlight.buttonLink", "section.highlight.alignment", "section.games"]} [] 1 2021-05-20 11:56:33.879-03 2021-05-20 11:56:33.889-03 152 plugins::email.settings.read \N {} [] 1 2021-05-20 11:56:33.934-03 2021-05-20 11:56:33.946-03 169 plugins::users-permissions.email-templates.update \N {} [] 1 2021-05-20 11:56:33.965-03 2021-05-20 11:56:33.975-03 180 admin::users.read \N {} [] 1 2021-05-20 11:56:33.992-03 2021-05-20 11:56:34.001-03 249 plugins::content-manager.explorer.delete application::platform.platform {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.369-03 255 plugins::content-manager.explorer.publish application::banner.banner {} [] 1 2021-05-20 13:17:09.39-03 2021-05-20 13:17:09.396-03 59 plugins::content-manager.explorer.create application::publisher.publisher {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.625-03 2021-05-20 11:56:33.635-03 70 plugins::content-manager.explorer.read application::publisher.publisher {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.656-03 2021-05-20 11:56:33.667-03 80 plugins::content-manager.explorer.update application::platform.platform {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.687-03 2021-05-20 11:56:33.697-03 90 plugins::content-manager.explorer.delete application::order.order {} ["admin::is-creator"] 3 2021-05-20 11:56:33.715-03 2021-05-20 11:56:33.724-03 99 plugins::upload.assets.copy-link \N {} [] 3 2021-05-20 11:56:33.741-03 2021-05-20 11:56:33.75-03 104 plugins::content-manager.explorer.create application::game.game {"fields": ["name", "slug", "short_description", "description", "price", "release_date", "rating", "cover", "gallery", "categories", "developers", "platforms", "publisher"]} [] 1 2021-05-20 11:56:33.797-03 2021-05-20 11:56:33.807-03 114 plugins::content-manager.explorer.read application::category.category {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.824-03 2021-05-20 11:56:33.837-03 130 plugins::content-manager.explorer.update application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.863-03 160 plugins::content-manager.collection-types.configure-view \N {} [] 1 2021-05-20 11:56:33.939-03 2021-05-20 11:56:33.949-03 170 plugins::users-permissions.advanced-settings.read \N {} [] 1 2021-05-20 11:56:33.966-03 2021-05-20 11:56:33.975-03 179 admin::users.create \N {} [] 1 2021-05-20 11:56:33.992-03 2021-05-20 11:56:34.001-03 250 plugins::content-manager.explorer.delete application::publisher.publisher {} [] 1 2021-05-20 13:17:09.355-03 2021-05-20 13:17:09.37-03 61 plugins::content-manager.explorer.create application::wishlist.wishlist {"fields": ["user", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.628-03 2021-05-20 11:56:33.637-03 68 plugins::content-manager.explorer.read application::platform.platform {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.654-03 2021-05-20 11:56:33.663-03 76 plugins::content-manager.explorer.update application::developer.developer {"fields": ["name", "slug", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.684-03 2021-05-20 11:56:33.694-03 84 plugins::content-manager.explorer.update plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.712-03 2021-05-20 11:56:33.721-03 97 plugins::content-manager.explorer.delete application::publisher.publisher {} ["admin::is-creator"] 3 2021-05-20 11:56:33.739-03 2021-05-20 11:56:33.75-03 101 plugins::content-manager.explorer.create application::banner.banner {"fields": ["image", "title", "subtitle", "button.label", "button.link", "ribbon.text", "ribbon.color", "ribbon.size"]} [] 1 2021-05-20 11:56:33.797-03 2021-05-20 11:56:33.807-03 111 plugins::content-manager.explorer.create plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} [] 1 2021-05-20 11:56:33.822-03 2021-05-20 11:56:33.833-03 129 plugins::content-manager.explorer.update application::home.home {"fields": ["newGames.title", "newGames.highlight.title", "newGames.highlight.subtitle", "newGames.highlight.background", "newGames.highlight.floatImage", "newGames.highlight.buttonLabel", "newGames.highlight.buttonLink", "newGames.highlight.alignment", "upcomingGames.title", "upcomingGames.highlight.title", "upcomingGames.highlight.subtitle", "upcomingGames.highlight.background", "upcomingGames.highlight.floatImage", "upcomingGames.highlight.buttonLabel", "upcomingGames.highlight.buttonLink", "upcomingGames.highlight.alignment", "freeGames.title", "freeGames.highlight.title", "freeGames.highlight.subtitle", "freeGames.highlight.background", "freeGames.highlight.floatImage", "freeGames.highlight.buttonLabel", "freeGames.highlight.buttonLink", "freeGames.highlight.alignment", "popularGames.title", "popularGames.highlight.title", "popularGames.highlight.subtitle", "popularGames.highlight.background", "popularGames.highlight.floatImage", "popularGames.highlight.buttonLabel", "popularGames.highlight.buttonLink", "popularGames.highlight.alignment", "popularGames.games"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.863-03 156 plugins::upload.assets.download \N {} [] 1 2021-05-20 11:56:33.937-03 2021-05-20 11:56:33.946-03 165 plugins::users-permissions.roles.delete \N {} [] 1 2021-05-20 11:56:33.962-03 2021-05-20 11:56:33.972-03 177 admin::webhooks.update \N {} [] 1 2021-05-20 11:56:33.99-03 2021-05-20 11:56:33.999-03 186 admin::roles.delete \N {} [] 1 2021-05-20 11:56:34.015-03 2021-05-20 11:56:34.022-03 251 plugins::content-manager.explorer.delete application::recommended.recommended {} [] 1 2021-05-20 13:17:09.356-03 2021-05-20 13:17:09.373-03 73 plugins::content-manager.explorer.read plugins::email-designer.email-template {"fields": ["design", "name", "subject", "bodyHtml", "bodyText", "enabled", "tags"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.682-03 2021-05-20 11:56:33.691-03 83 plugins::content-manager.explorer.update application::wishlist.wishlist {"fields": ["user", "games"]} ["admin::is-creator"] 3 2021-05-20 11:56:33.711-03 2021-05-20 11:56:33.722-03 110 plugins::content-manager.explorer.create application::wishlist.wishlist {"fields": ["user", "games"]} [] 1 2021-05-20 11:56:33.801-03 2021-05-20 11:56:33.81-03 118 plugins::content-manager.explorer.read application::order.order {"fields": ["user", "games", "payment_intent_id", "card_brand", "card_last4", "total_in_cents"]} [] 1 2021-05-20 11:56:33.826-03 2021-05-20 11:56:33.836-03 126 plugins::content-manager.explorer.update application::category.category {"fields": ["name", "slug", "games"]} [] 1 2021-05-20 11:56:33.853-03 2021-05-20 11:56:33.862-03 136 plugins::content-manager.explorer.update plugins::users-permissions.user {"fields": ["username", "email", "provider", "password", "resetPasswordToken", "confirmationToken", "confirmed", "blocked", "role"]} [] 1 2021-05-20 11:56:33.88-03 2021-05-20 11:56:33.892-03 155 plugins::upload.assets.update \N {} [] 1 2021-05-20 11:56:33.937-03 2021-05-20 11:56:33.946-03 163 plugins::users-permissions.roles.read \N {} [] 1 2021-05-20 11:56:33.961-03 2021-05-20 11:56:33.97-03 172 admin::marketplace.read \N {} [] 1 2021-05-20 11:56:33.988-03 2021-05-20 11:56:33.997-03 185 admin::roles.update \N {} [] 1 2021-05-20 11:56:34.015-03 2021-05-20 11:56:34.021-03 252 plugins::content-manager.explorer.delete application::wishlist.wishlist {} [] 1 2021-05-20 13:17:09.359-03 2021-05-20 13:17:09.373-03 \. -- -- TOC entry 3410 (class 0 OID 549222) -- Dependencies: 261 -- Data for Name: strapi_role; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.strapi_role (id, name, code, description, created_at, updated_at) FROM stdin; 1 Super Admin strapi-super-admin Super Admins can access and manage all features and settings. 2021-05-20 11:56:33.429-03 2021-05-20 11:56:33.429-03 2 Editor strapi-editor Editors can manage and publish contents including those of other users. 2021-05-20 11:56:33.438-03 2021-05-20 11:56:33.438-03 3 Author strapi-author Authors can manage the content they have created. 2021-05-20 11:56:33.445-03 2021-05-20 11:56:33.445-03 \. -- -- TOC entry 3414 (class 0 OID 549252) -- Dependencies: 265 -- Data for Name: strapi_users_roles; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.strapi_users_roles (id, user_id, role_id) FROM stdin; 1 1 1 \. -- -- TOC entry 3406 (class 0 OID 549198) -- Dependencies: 257 -- Data for Name: strapi_webhooks; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.strapi_webhooks (id, name, url, headers, events, enabled) FROM stdin; \. -- -- TOC entry 3418 (class 0 OID 549273) -- Dependencies: 269 -- Data for Name: upload_file; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.upload_file (id, name, "alternativeText", caption, width, height, formats, hash, ext, mime, size, url, "previewUrl", provider, provider_metadata, created_by, updated_by, created_at, updated_at) FROM stdin; 1 biomutant.webp 1275 460 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522842/thumbnail_biomutant_c4f3f1f679.webp", "hash": "thumbnail_biomutant_c4f3f1f679", "mime": "image/webp", "name": "thumbnail_biomutant.webp", "path": null, "size": 3.78, "width": 245, "height": 88, "provider_metadata": {"public_id": "thumbnail_biomutant_c4f3f1f679", "resource_type": "image"}}} biomutant_c4f3f1f679 .webp image/webp 60.92 https://res.cloudinary.com/won-games/image/upload/v1621522840/biomutant_c4f3f1f679.webp \N cloudinary {"public_id": "biomutant_c4f3f1f679", "resource_type": "image"} 1 1 2021-05-20 12:00:43.866-03 2021-05-20 12:00:43.871-03 2 dawn-of-man.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522980/thumbnail_dawn_of_man_ab7395d8ab.jpg", "hash": "thumbnail_dawn_of_man_ab7395d8ab", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 4.31, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_ab7395d8ab", "resource_type": "image"}}} dawn_of_man_ab7395d8ab .jpg image/jpeg 149.13 https://res.cloudinary.com/won-games/image/upload/v1621522979/dawn_of_man_ab7395d8ab.jpg \N cloudinary {"public_id": "dawn_of_man_ab7395d8ab", "resource_type": "image"} \N \N 2021-05-20 12:03:01.607-03 2021-05-20 12:03:01.607-03 3 lost-ruins.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522980/thumbnail_lost_ruins_afad9be260.jpg", "hash": "thumbnail_lost_ruins_afad9be260", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 8.51, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_lost_ruins_afad9be260", "resource_type": "image"}}} lost_ruins_afad9be260 .jpg image/jpeg 352.06 https://res.cloudinary.com/won-games/image/upload/v1621522979/lost_ruins_afad9be260.jpg \N cloudinary {"public_id": "lost_ruins_afad9be260", "resource_type": "image"} \N \N 2021-05-20 12:03:01.85-03 2021-05-20 12:03:01.85-03 4 neverwinter-nights-2-complete.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522980/thumbnail_neverwinter_nights_2_complete_2b2c31c2a1.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_2b2c31c2a1", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 6.76, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_2b2c31c2a1", "resource_type": "image"}}} neverwinter_nights_2_complete_2b2c31c2a1 .jpg image/jpeg 296.83 https://res.cloudinary.com/won-games/image/upload/v1621522979/neverwinter_nights_2_complete_2b2c31c2a1.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_2b2c31c2a1", "resource_type": "image"} \N \N 2021-05-20 12:03:01.901-03 2021-05-20 12:03:01.901-03 5 baldurs-gate-iii.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522980/thumbnail_baldurs_gate_iii_9c8e98271c.jpg", "hash": "thumbnail_baldurs_gate_iii_9c8e98271c", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 6.96, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_9c8e98271c", "resource_type": "image"}}} baldurs_gate_iii_9c8e98271c .jpg image/jpeg 318.69 https://res.cloudinary.com/won-games/image/upload/v1621522979/baldurs_gate_iii_9c8e98271c.jpg \N cloudinary {"public_id": "baldurs_gate_iii_9c8e98271c", "resource_type": "image"} \N \N 2021-05-20 12:03:02.112-03 2021-05-20 12:03:02.112-03 6 metal-gear-solid-2-substance.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_metal_gear_solid_2_substance_faa2ceca69.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_faa2ceca69", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 5.51, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_faa2ceca69", "resource_type": "image"}}} metal_gear_solid_2_substance_faa2ceca69 .jpg image/jpeg 220.23 https://res.cloudinary.com/won-games/image/upload/v1621522979/metal_gear_solid_2_substance_faa2ceca69.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_faa2ceca69", "resource_type": "image"} \N \N 2021-05-20 12:03:02.16-03 2021-05-20 12:03:02.16-03 7 thronebreaker-the-witcher-tales.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522980/thumbnail_thronebreaker_the_witcher_tales_a719a07145.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_a719a07145", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 7.57, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_a719a07145", "resource_type": "image"}}} thronebreaker_the_witcher_tales_a719a07145 .jpg image/jpeg 467.63 https://res.cloudinary.com/won-games/image/upload/v1621522979/thronebreaker_the_witcher_tales_a719a07145.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_a719a07145", "resource_type": "image"} \N \N 2021-05-20 12:03:02.261-03 2021-05-20 12:03:02.261-03 8 kenshi.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_kenshi_3b90722861.jpg", "hash": "thumbnail_kenshi_3b90722861", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 4.94, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kenshi_3b90722861", "resource_type": "image"}}} kenshi_3b90722861 .jpg image/jpeg 182.07 https://res.cloudinary.com/won-games/image/upload/v1621522979/kenshi_3b90722861.jpg \N cloudinary {"public_id": "kenshi_3b90722861", "resource_type": "image"} \N \N 2021-05-20 12:03:02.376-03 2021-05-20 12:03:02.376-03 9 warcraft-bundle.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_warcraft_bundle_63f86d3e30.jpg", "hash": "thumbnail_warcraft_bundle_63f86d3e30", "mime": "image/jpeg", "name": "thumbnail_warcraft-bundle.jpg", "path": null, "size": 9.53, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_warcraft_bundle_63f86d3e30", "resource_type": "image"}}} warcraft_bundle_63f86d3e30 .jpg image/jpeg 523.89 https://res.cloudinary.com/won-games/image/upload/v1621522980/warcraft_bundle_63f86d3e30.jpg \N cloudinary {"public_id": "warcraft_bundle_63f86d3e30", "resource_type": "image"} \N \N 2021-05-20 12:03:02.464-03 2021-05-20 12:03:02.464-03 10 swat-4-gold-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_swat_4_gold_edition_73444b94dc.jpg", "hash": "thumbnail_swat_4_gold_edition_73444b94dc", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 7.62, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_73444b94dc", "resource_type": "image"}}} swat_4_gold_edition_73444b94dc .jpg image/jpeg 308.66 https://res.cloudinary.com/won-games/image/upload/v1621522980/swat_4_gold_edition_73444b94dc.jpg \N cloudinary {"public_id": "swat_4_gold_edition_73444b94dc", "resource_type": "image"} \N \N 2021-05-20 12:03:02.636-03 2021-05-20 12:03:02.636-03 11 fallout-3-game-of-the-year-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_fallout_3_game_of_the_year_edition_5512d3cc50.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_5512d3cc50", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 8.06, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_5512d3cc50", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_5512d3cc50 .jpg image/jpeg 479.99 https://res.cloudinary.com/won-games/image/upload/v1621522979/fallout_3_game_of_the_year_edition_5512d3cc50.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_5512d3cc50", "resource_type": "image"} \N \N 2021-05-20 12:03:02.65-03 2021-05-20 12:03:02.65-03 12 fallout-new-vegas-ultimate-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_fallout_new_vegas_ultimate_edition_cfcf3e959c.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_cfcf3e959c", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 6.8, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_cfcf3e959c", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_cfcf3e959c .jpg image/jpeg 407.13 https://res.cloudinary.com/won-games/image/upload/v1621522980/fallout_new_vegas_ultimate_edition_cfcf3e959c.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_cfcf3e959c", "resource_type": "image"} \N \N 2021-05-20 12:03:02.657-03 2021-05-20 12:03:02.657-03 13 metal-gear-solid.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_metal_gear_solid_21f11fe9ed.jpg", "hash": "thumbnail_metal_gear_solid_21f11fe9ed", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 5.73, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_21f11fe9ed", "resource_type": "image"}}} metal_gear_solid_21f11fe9ed .jpg image/jpeg 176.14 https://res.cloudinary.com/won-games/image/upload/v1621522979/metal_gear_solid_21f11fe9ed.jpg \N cloudinary {"public_id": "metal_gear_solid_21f11fe9ed", "resource_type": "image"} \N \N 2021-05-20 12:03:02.774-03 2021-05-20 12:03:02.774-03 14 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 6.46, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be .jpg image/jpeg 246.30 https://res.cloudinary.com/won-games/image/upload/v1621522979/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_d7bdd611be", "resource_type": "image"} \N \N 2021-05-20 12:03:02.776-03 2021-05-20 12:03:02.776-03 15 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 5.76, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0 .jpg image/jpeg 242.26 https://res.cloudinary.com/won-games/image/upload/v1621522978/the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_b108ceead0", "resource_type": "image"} \N \N 2021-05-20 12:03:02.776-03 2021-05-20 12:03:02.776-03 16 the-witcher-3-wild-hunt.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_the_witcher_3_wild_hunt_f979c31605.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_f979c31605", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 5.49, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_f979c31605", "resource_type": "image"}}} the_witcher_3_wild_hunt_f979c31605 .jpg image/jpeg 232.35 https://res.cloudinary.com/won-games/image/upload/v1621522980/the_witcher_3_wild_hunt_f979c31605.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_f979c31605", "resource_type": "image"} \N \N 2021-05-20 12:03:02.776-03 2021-05-20 12:03:02.776-03 17 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 6.94, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882 .jpg image/jpeg 257.90 https://res.cloudinary.com/won-games/image/upload/v1621522980/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_84cbd22882", "resource_type": "image"} \N \N 2021-05-20 12:03:02.826-03 2021-05-20 12:03:02.826-03 18 the-witcher.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_the_witcher_190aec3de8.jpg", "hash": "thumbnail_the_witcher_190aec3de8", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 6.88, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_190aec3de8", "resource_type": "image"}}} the_witcher_190aec3de8 .jpg image/jpeg 458.49 https://res.cloudinary.com/won-games/image/upload/v1621522980/the_witcher_190aec3de8.jpg \N cloudinary {"public_id": "the_witcher_190aec3de8", "resource_type": "image"} \N \N 2021-05-20 12:03:02.83-03 2021-05-20 12:03:02.83-03 19 spiritfarer.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_spiritfarer_be5bfbd205.jpg", "hash": "thumbnail_spiritfarer_be5bfbd205", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 6.65, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_spiritfarer_be5bfbd205", "resource_type": "image"}}} spiritfarer_be5bfbd205 .jpg image/jpeg 269.17 https://res.cloudinary.com/won-games/image/upload/v1621522980/spiritfarer_be5bfbd205.jpg \N cloudinary {"public_id": "spiritfarer_be5bfbd205", "resource_type": "image"} \N \N 2021-05-20 12:03:02.958-03 2021-05-20 12:03:02.958-03 20 cyberpunk-2077.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_cyberpunk_2077_fbfcbd0191.jpg", "hash": "thumbnail_cyberpunk_2077_fbfcbd0191", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 6.65, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_fbfcbd0191", "resource_type": "image"}}} cyberpunk_2077_fbfcbd0191 .jpg image/jpeg 305.42 https://res.cloudinary.com/won-games/image/upload/v1621522979/cyberpunk_2077_fbfcbd0191.jpg \N cloudinary {"public_id": "cyberpunk_2077_fbfcbd0191", "resource_type": "image"} \N \N 2021-05-20 12:03:02.991-03 2021-05-20 12:03:02.991-03 21 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 6.24, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892 .jpg image/jpeg 348.12 https://res.cloudinary.com/won-games/image/upload/v1621522980/the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_327e9fc892", "resource_type": "image"} \N \N 2021-05-20 12:03:03.038-03 2021-05-20 12:03:03.038-03 22 risk-of-rain.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_risk_of_rain_1b1de7f2ac.jpg", "hash": "thumbnail_risk_of_rain_1b1de7f2ac", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 4.47, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_1b1de7f2ac", "resource_type": "image"}}} risk_of_rain_1b1de7f2ac .jpg image/jpeg 143.69 https://res.cloudinary.com/won-games/image/upload/v1621522979/risk_of_rain_1b1de7f2ac.jpg \N cloudinary {"public_id": "risk_of_rain_1b1de7f2ac", "resource_type": "image"} \N \N 2021-05-20 12:03:03.156-03 2021-05-20 12:03:03.156-03 39 katana-zero.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_katana_zero_7f322dcf4e.jpg", "hash": "thumbnail_katana_zero_7f322dcf4e", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 9.63, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_katana_zero_7f322dcf4e", "resource_type": "image"}}} katana_zero_7f322dcf4e .jpg image/jpeg 512.44 https://res.cloudinary.com/won-games/image/upload/v1621522981/katana_zero_7f322dcf4e.jpg \N cloudinary {"public_id": "katana_zero_7f322dcf4e", "resource_type": "image"} \N \N 2021-05-20 12:03:04.81-03 2021-05-20 12:03:04.81-03 133 risk-of-rain.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_risk_of_rain_867d376d42.jpg", "hash": "thumbnail_risk_of_rain_867d376d42", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 6.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_867d376d42", "resource_type": "image"}}} risk_of_rain_867d376d42 .jpg image/jpeg 159.68 https://res.cloudinary.com/won-games/image/upload/v1621522996/risk_of_rain_867d376d42.jpg \N cloudinary {"public_id": "risk_of_rain_867d376d42", "resource_type": "image"} \N \N 2021-05-20 12:03:26.616-03 2021-05-20 12:03:26.616-03 137 lost-ruins.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_lost_ruins_bc87cfc68a.jpg", "hash": "thumbnail_lost_ruins_bc87cfc68a", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 9.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_lost_ruins_bc87cfc68a", "resource_type": "image"}}} lost_ruins_bc87cfc68a .jpg image/jpeg 2072.89 https://res.cloudinary.com/won-games/image/upload/v1621522994/lost_ruins_bc87cfc68a.jpg \N cloudinary {"public_id": "lost_ruins_bc87cfc68a", "resource_type": "image"} \N \N 2021-05-20 12:03:26.889-03 2021-05-20 12:03:26.889-03 158 fallout-3-game-of-the-year-edition.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_fallout_3_game_of_the_year_edition_f0cc950d95.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_f0cc950d95", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 32.92, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_f0cc950d95", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_f0cc950d95 .jpg image/jpeg 718.18 https://res.cloudinary.com/won-games/image/upload/v1621522998/fallout_3_game_of_the_year_edition_f0cc950d95.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_f0cc950d95", "resource_type": "image"} \N \N 2021-05-20 12:03:27.378-03 2021-05-20 12:03:27.378-03 159 the-witcher-2.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_the_witcher_2_dc1c71d456.jpg", "hash": "thumbnail_the_witcher_2_dc1c71d456", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 21.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_dc1c71d456", "resource_type": "image"}}} the_witcher_2_dc1c71d456 .jpg image/jpeg 92.33 https://res.cloudinary.com/won-games/image/upload/v1621522996/the_witcher_2_dc1c71d456.jpg \N cloudinary {"public_id": "the_witcher_2_dc1c71d456", "resource_type": "image"} \N \N 2021-05-20 12:03:27.411-03 2021-05-20 12:03:27.411-03 160 spiritfarer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_spiritfarer_79e0e76bbe.jpg", "hash": "thumbnail_spiritfarer_79e0e76bbe", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 5.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_79e0e76bbe", "resource_type": "image"}}} spiritfarer_79e0e76bbe .jpg image/jpeg 285.87 https://res.cloudinary.com/won-games/image/upload/v1621522995/spiritfarer_79e0e76bbe.jpg \N cloudinary {"public_id": "spiritfarer_79e0e76bbe", "resource_type": "image"} \N \N 2021-05-20 12:03:27.465-03 2021-05-20 12:03:27.465-03 23 huntdown.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_huntdown_81ef2fbfbd.jpg", "hash": "thumbnail_huntdown_81ef2fbfbd", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 11.51, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_huntdown_81ef2fbfbd", "resource_type": "image"}}} huntdown_81ef2fbfbd .jpg image/jpeg 659.21 https://res.cloudinary.com/won-games/image/upload/v1621522979/huntdown_81ef2fbfbd.jpg \N cloudinary {"public_id": "huntdown_81ef2fbfbd", "resource_type": "image"} \N \N 2021-05-20 12:03:03.179-03 2021-05-20 12:03:03.179-03 31 ghost-of-a-tale.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_ghost_of_a_tale_1025a96c6c.jpg", "hash": "thumbnail_ghost_of_a_tale_1025a96c6c", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 6.78, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_1025a96c6c", "resource_type": "image"}}} ghost_of_a_tale_1025a96c6c .jpg image/jpeg 390.52 https://res.cloudinary.com/won-games/image/upload/v1621522980/ghost_of_a_tale_1025a96c6c.jpg \N cloudinary {"public_id": "ghost_of_a_tale_1025a96c6c", "resource_type": "image"} \N \N 2021-05-20 12:03:03.749-03 2021-05-20 12:03:03.749-03 33 mundaun.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_mundaun_9164cd782e.jpg", "hash": "thumbnail_mundaun_9164cd782e", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 6.2, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_mundaun_9164cd782e", "resource_type": "image"}}} mundaun_9164cd782e .jpg image/jpeg 335.31 https://res.cloudinary.com/won-games/image/upload/v1621522980/mundaun_9164cd782e.jpg \N cloudinary {"public_id": "mundaun_9164cd782e", "resource_type": "image"} \N \N 2021-05-20 12:03:03.964-03 2021-05-20 12:03:03.964-03 40 heavens-vault.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_heavens_vault_5f0dee17c8.jpg", "hash": "thumbnail_heavens_vault_5f0dee17c8", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 7.15, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_heavens_vault_5f0dee17c8", "resource_type": "image"}}} heavens_vault_5f0dee17c8 .jpg image/jpeg 306.93 https://res.cloudinary.com/won-games/image/upload/v1621522980/heavens_vault_5f0dee17c8.jpg \N cloudinary {"public_id": "heavens_vault_5f0dee17c8", "resource_type": "image"} \N \N 2021-05-20 12:03:04.813-03 2021-05-20 12:03:04.813-03 42 hyper-light-drifter.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_hyper_light_drifter_553644156a.jpg", "hash": "thumbnail_hyper_light_drifter_553644156a", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 7.91, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_553644156a", "resource_type": "image"}}} hyper_light_drifter_553644156a .jpg image/jpeg 265.86 https://res.cloudinary.com/won-games/image/upload/v1621522980/hyper_light_drifter_553644156a.jpg \N cloudinary {"public_id": "hyper_light_drifter_553644156a", "resource_type": "image"} \N \N 2021-05-20 12:03:04.99-03 2021-05-20 12:03:04.99-03 43 siege-survival-gloria-victis.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_siege_survival_gloria_victis_9b2bcfa7e4.jpg", "hash": "thumbnail_siege_survival_gloria_victis_9b2bcfa7e4", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 7.7, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_9b2bcfa7e4", "resource_type": "image"}}} siege_survival_gloria_victis_9b2bcfa7e4 .jpg image/jpeg 588.88 https://res.cloudinary.com/won-games/image/upload/v1621522981/siege_survival_gloria_victis_9b2bcfa7e4.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_9b2bcfa7e4", "resource_type": "image"} \N \N 2021-05-20 12:03:05.273-03 2021-05-20 12:03:05.273-03 44 dorfromantik.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522984/thumbnail_dorfromantik_f313e12269.jpg", "hash": "thumbnail_dorfromantik_f313e12269", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 11.61, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_dorfromantik_f313e12269", "resource_type": "image"}}} dorfromantik_f313e12269 .jpg image/jpeg 562.76 https://res.cloudinary.com/won-games/image/upload/v1621522981/dorfromantik_f313e12269.jpg \N cloudinary {"public_id": "dorfromantik_f313e12269", "resource_type": "image"} \N \N 2021-05-20 12:03:05.356-03 2021-05-20 12:03:05.356-03 45 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_heroes_of_might_and_magic_3_complete_edition_50f9cf5c58.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_50f9cf5c58", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 10.03, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_50f9cf5c58", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_50f9cf5c58 .jpg image/jpeg 544.39 https://res.cloudinary.com/won-games/image/upload/v1621522981/heroes_of_might_and_magic_3_complete_edition_50f9cf5c58.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_50f9cf5c58", "resource_type": "image"} \N \N 2021-05-20 12:03:05.723-03 2021-05-20 12:03:05.723-03 48 fates-of-ort.jpg \N \N 1572 727 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522984/thumbnail_fates_of_ort_af156b0032.jpg", "hash": "thumbnail_fates_of_ort_af156b0032", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 7, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_af156b0032", "resource_type": "image"}}} fates_of_ort_af156b0032 .jpg image/jpeg 628.84 https://res.cloudinary.com/won-games/image/upload/v1621522981/fates_of_ort_af156b0032.jpg \N cloudinary {"public_id": "fates_of_ort_af156b0032", "resource_type": "image"} \N \N 2021-05-20 12:03:06.486-03 2021-05-20 12:03:06.486-03 49 bloodrayne-complete-bundle.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522985/thumbnail_bloodrayne_complete_bundle_32f75b2826.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_32f75b2826", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 9.26, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_32f75b2826", "resource_type": "image"}}} bloodrayne_complete_bundle_32f75b2826 .jpg image/jpeg 466.17 https://res.cloudinary.com/won-games/image/upload/v1621522982/bloodrayne_complete_bundle_32f75b2826.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_32f75b2826", "resource_type": "image"} \N \N 2021-05-20 12:03:07.854-03 2021-05-20 12:03:07.854-03 24 space-haven.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_space_haven_690f5e4b7a.jpg", "hash": "thumbnail_space_haven_690f5e4b7a", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 6.3, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_space_haven_690f5e4b7a", "resource_type": "image"}}} space_haven_690f5e4b7a .jpg image/jpeg 230.70 https://res.cloudinary.com/won-games/image/upload/v1621522980/space_haven_690f5e4b7a.jpg \N cloudinary {"public_id": "space_haven_690f5e4b7a", "resource_type": "image"} \N \N 2021-05-20 12:03:03.179-03 2021-05-20 12:03:03.179-03 25 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 6.59, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6 .jpg image/jpeg 365.61 https://res.cloudinary.com/won-games/image/upload/v1621522980/werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_2f7e741fc6", "resource_type": "image"} \N \N 2021-05-20 12:03:03.211-03 2021-05-20 12:03:03.211-03 26 silent-hill-4-the-room.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_silent_hill_4_the_room_2bef999e4a.jpg", "hash": "thumbnail_silent_hill_4_the_room_2bef999e4a", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 7.42, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_2bef999e4a", "resource_type": "image"}}} silent_hill_4_the_room_2bef999e4a .jpg image/jpeg 335.62 https://res.cloudinary.com/won-games/image/upload/v1621522979/silent_hill_4_the_room_2bef999e4a.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_2bef999e4a", "resource_type": "image"} \N \N 2021-05-20 12:03:03.25-03 2021-05-20 12:03:03.25-03 27 vampire-the-masquerade-bloodlines.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522981/thumbnail_vampire_the_masquerade_bloodlines_152f84f5aa.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_152f84f5aa", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 7.55, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_152f84f5aa", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_152f84f5aa .jpg image/jpeg 258.94 https://res.cloudinary.com/won-games/image/upload/v1621522980/vampire_the_masquerade_bloodlines_152f84f5aa.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_152f84f5aa", "resource_type": "image"} \N \N 2021-05-20 12:03:03.54-03 2021-05-20 12:03:03.54-03 28 witcher-adventure-game.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_witcher_adventure_game_d6a015c115.jpg", "hash": "thumbnail_witcher_adventure_game_d6a015c115", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 6.46, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_d6a015c115", "resource_type": "image"}}} witcher_adventure_game_d6a015c115 .jpg image/jpeg 334.78 https://res.cloudinary.com/won-games/image/upload/v1621522979/witcher_adventure_game_d6a015c115.jpg \N cloudinary {"public_id": "witcher_adventure_game_d6a015c115", "resource_type": "image"} \N \N 2021-05-20 12:03:03.569-03 2021-05-20 12:03:03.569-03 29 huniepop-2-double-date.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_huniepop_2_double_date_64e03512ec.jpg", "hash": "thumbnail_huniepop_2_double_date_64e03512ec", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 11.11, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_64e03512ec", "resource_type": "image"}}} huniepop_2_double_date_64e03512ec .jpg image/jpeg 598.53 https://res.cloudinary.com/won-games/image/upload/v1621522980/huniepop_2_double_date_64e03512ec.jpg \N cloudinary {"public_id": "huniepop_2_double_date_64e03512ec", "resource_type": "image"} \N \N 2021-05-20 12:03:03.732-03 2021-05-20 12:03:03.732-03 32 divinity-original-sin-2.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_divinity_original_sin_2_cf7b9cc3be.jpg", "hash": "thumbnail_divinity_original_sin_2_cf7b9cc3be", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 9.1, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_cf7b9cc3be", "resource_type": "image"}}} divinity_original_sin_2_cf7b9cc3be .jpg image/jpeg 491.06 https://res.cloudinary.com/won-games/image/upload/v1621522980/divinity_original_sin_2_cf7b9cc3be.jpg \N cloudinary {"public_id": "divinity_original_sin_2_cf7b9cc3be", "resource_type": "image"} \N \N 2021-05-20 12:03:03.869-03 2021-05-20 12:03:03.869-03 34 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 7.58, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc .jpg image/jpeg 361.76 https://res.cloudinary.com/won-games/image/upload/v1621522980/witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_3aea1fcfdc", "resource_type": "image"} \N \N 2021-05-20 12:03:03.97-03 2021-05-20 12:03:03.97-03 37 blazing-chrome.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_blazing_chrome_f78029efd7.jpg", "hash": "thumbnail_blazing_chrome_f78029efd7", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 8.81, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_f78029efd7", "resource_type": "image"}}} blazing_chrome_f78029efd7 .jpg image/jpeg 429.97 https://res.cloudinary.com/won-games/image/upload/v1621522980/blazing_chrome_f78029efd7.jpg \N cloudinary {"public_id": "blazing_chrome_f78029efd7", "resource_type": "image"} \N \N 2021-05-20 12:03:04.566-03 2021-05-20 12:03:04.566-03 30 the-mansion.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_the_mansion_118ee55394.jpg", "hash": "thumbnail_the_mansion_118ee55394", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 7.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_mansion_118ee55394", "resource_type": "image"}}} the_mansion_118ee55394 .jpg image/jpeg 420.47 https://res.cloudinary.com/won-games/image/upload/v1621522980/the_mansion_118ee55394.jpg \N cloudinary {"public_id": "the_mansion_118ee55394", "resource_type": "image"} \N \N 2021-05-20 12:03:03.733-03 2021-05-20 12:03:03.733-03 35 diablo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_diablo_19776ea4e6.jpg", "hash": "thumbnail_diablo_19776ea4e6", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 5.92, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_diablo_19776ea4e6", "resource_type": "image"}}} diablo_19776ea4e6 .jpg image/jpeg 224.75 https://res.cloudinary.com/won-games/image/upload/v1621522980/diablo_19776ea4e6.jpg \N cloudinary {"public_id": "diablo_19776ea4e6", "resource_type": "image"} \N \N 2021-05-20 12:03:03.982-03 2021-05-20 12:03:03.982-03 36 the-witcher-2.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_the_witcher_2_9f4d9f0524.jpg", "hash": "thumbnail_the_witcher_2_9f4d9f0524", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 16.04, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_9f4d9f0524", "resource_type": "image"}}} the_witcher_2_9f4d9f0524 .jpg image/jpeg 721.47 https://res.cloudinary.com/won-games/image/upload/v1621522981/the_witcher_2_9f4d9f0524.jpg \N cloudinary {"public_id": "the_witcher_2_9f4d9f0524", "resource_type": "image"} \N \N 2021-05-20 12:03:04.134-03 2021-05-20 12:03:04.134-03 41 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522982/thumbnail_the_witcher_3_wild_hunt_expansion_pass_4f878d5734.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_4f878d5734", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 5.57, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_4f878d5734", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_4f878d5734 .jpg image/jpeg 238.58 https://res.cloudinary.com/won-games/image/upload/v1621522980/the_witcher_3_wild_hunt_expansion_pass_4f878d5734.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_4f878d5734", "resource_type": "image"} \N \N 2021-05-20 12:03:04.813-03 2021-05-20 12:03:04.813-03 46 foundation.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_foundation_ddce71b537.jpg", "hash": "thumbnail_foundation_ddce71b537", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 8.98, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_foundation_ddce71b537", "resource_type": "image"}}} foundation_ddce71b537 .jpg image/jpeg 477.11 https://res.cloudinary.com/won-games/image/upload/v1621522981/foundation_ddce71b537.jpg \N cloudinary {"public_id": "foundation_ddce71b537", "resource_type": "image"} \N \N 2021-05-20 12:03:05.729-03 2021-05-20 12:03:05.729-03 47 biomutant.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_biomutant_6bebfa5506.jpg", "hash": "thumbnail_biomutant_6bebfa5506", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 8.42, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_biomutant_6bebfa5506", "resource_type": "image"}}} biomutant_6bebfa5506 .jpg image/jpeg 494.70 https://res.cloudinary.com/won-games/image/upload/v1621522981/biomutant_6bebfa5506.jpg \N cloudinary {"public_id": "biomutant_6bebfa5506", "resource_type": "image"} \N \N 2021-05-20 12:03:05.753-03 2021-05-20 12:03:05.753-03 52 metal-gear-solid-2-substance.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522992/thumbnail_metal_gear_solid_2_substance_06fdae4560.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_06fdae4560", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 3.86, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_06fdae4560", "resource_type": "image"}}} metal_gear_solid_2_substance_06fdae4560 .jpg image/jpeg 82.49 https://res.cloudinary.com/won-games/image/upload/v1621522984/metal_gear_solid_2_substance_06fdae4560.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_06fdae4560", "resource_type": "image"} \N \N 2021-05-20 12:03:13.812-03 2021-05-20 12:03:13.812-03 53 metal-gear-solid-2-substance.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522993/thumbnail_metal_gear_solid_2_substance_c7d9537b88.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_c7d9537b88", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 4.01, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_c7d9537b88", "resource_type": "image"}}} metal_gear_solid_2_substance_c7d9537b88 .jpg image/jpeg 90.15 https://res.cloudinary.com/won-games/image/upload/v1621522985/metal_gear_solid_2_substance_c7d9537b88.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_c7d9537b88", "resource_type": "image"} \N \N 2021-05-20 12:03:14.42-03 2021-05-20 12:03:14.42-03 54 neverwinter-nights-2-complete.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522993/thumbnail_neverwinter_nights_2_complete_bcfaf84f4c.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_bcfaf84f4c", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 10.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_bcfaf84f4c", "resource_type": "image"}}} neverwinter_nights_2_complete_bcfaf84f4c .jpg image/jpeg 132.13 https://res.cloudinary.com/won-games/image/upload/v1621522984/neverwinter_nights_2_complete_bcfaf84f4c.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_bcfaf84f4c", "resource_type": "image"} \N \N 2021-05-20 12:03:14.839-03 2021-05-20 12:03:14.839-03 55 metal-gear-solid-2-substance.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_metal_gear_solid_2_substance_f5bc894d51.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_f5bc894d51", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 4.62, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_f5bc894d51", "resource_type": "image"}}} metal_gear_solid_2_substance_f5bc894d51 .jpg image/jpeg 95.90 https://res.cloudinary.com/won-games/image/upload/v1621522985/metal_gear_solid_2_substance_f5bc894d51.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_f5bc894d51", "resource_type": "image"} \N \N 2021-05-20 12:03:15.277-03 2021-05-20 12:03:15.277-03 38 disco-elysium.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522983/thumbnail_disco_elysium_a43494d03f.jpg", "hash": "thumbnail_disco_elysium_a43494d03f", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 9.43, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_disco_elysium_a43494d03f", "resource_type": "image"}}} disco_elysium_a43494d03f .jpg image/jpeg 552.75 https://res.cloudinary.com/won-games/image/upload/v1621522981/disco_elysium_a43494d03f.jpg \N cloudinary {"public_id": "disco_elysium_a43494d03f", "resource_type": "image"} \N \N 2021-05-20 12:03:04.804-03 2021-05-20 12:03:04.804-03 140 risk-of-rain.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_risk_of_rain_2df37ee011.jpg", "hash": "thumbnail_risk_of_rain_2df37ee011", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 8.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_2df37ee011", "resource_type": "image"}}} risk_of_rain_2df37ee011 .jpg image/jpeg 249.40 https://res.cloudinary.com/won-games/image/upload/v1621522995/risk_of_rain_2df37ee011.jpg \N cloudinary {"public_id": "risk_of_rain_2df37ee011", "resource_type": "image"} \N \N 2021-05-20 12:03:26.907-03 2021-05-20 12:03:26.907-03 141 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.45, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c .jpg image/jpeg 254.15 https://res.cloudinary.com/won-games/image/upload/v1621522996/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_7956b97c4c", "resource_type": "image"} \N \N 2021-05-20 12:03:26.935-03 2021-05-20 12:03:26.935-03 142 the-witcher-2.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_the_witcher_2_c2d3e1b036.jpg", "hash": "thumbnail_the_witcher_2_c2d3e1b036", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 15.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_c2d3e1b036", "resource_type": "image"}}} the_witcher_2_c2d3e1b036 .jpg image/jpeg 106.45 https://res.cloudinary.com/won-games/image/upload/v1621522996/the_witcher_2_c2d3e1b036.jpg \N cloudinary {"public_id": "the_witcher_2_c2d3e1b036", "resource_type": "image"} \N \N 2021-05-20 12:03:26.953-03 2021-05-20 12:03:26.953-03 143 mundaun.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_mundaun_c4cf19cf81.jpg", "hash": "thumbnail_mundaun_c4cf19cf81", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 4.93, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mundaun_c4cf19cf81", "resource_type": "image"}}} mundaun_c4cf19cf81 .jpg image/jpeg 362.50 https://res.cloudinary.com/won-games/image/upload/v1621522996/mundaun_c4cf19cf81.jpg \N cloudinary {"public_id": "mundaun_c4cf19cf81", "resource_type": "image"} \N \N 2021-05-20 12:03:26.979-03 2021-05-20 12:03:26.979-03 145 siege-survival-gloria-victis.jpg \N \N 1921 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_siege_survival_gloria_victis_8d75e7e83e.jpg", "hash": "thumbnail_siege_survival_gloria_victis_8d75e7e83e", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 13.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_8d75e7e83e", "resource_type": "image"}}} siege_survival_gloria_victis_8d75e7e83e .jpg image/jpeg 372.63 https://res.cloudinary.com/won-games/image/upload/v1621522996/siege_survival_gloria_victis_8d75e7e83e.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_8d75e7e83e", "resource_type": "image"} \N \N 2021-05-20 12:03:27.051-03 2021-05-20 12:03:27.051-03 146 disco-elysium.jpg \N \N 1918 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_disco_elysium_4a55d85970.jpg", "hash": "thumbnail_disco_elysium_4a55d85970", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 7.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_disco_elysium_4a55d85970", "resource_type": "image"}}} disco_elysium_4a55d85970 .jpg image/jpeg 241.19 https://res.cloudinary.com/won-games/image/upload/v1621522997/disco_elysium_4a55d85970.jpg \N cloudinary {"public_id": "disco_elysium_4a55d85970", "resource_type": "image"} \N \N 2021-05-20 12:03:27.104-03 2021-05-20 12:03:27.104-03 147 vampire-the-masquerade-bloodlines.jpg \N \N 1600 1200 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_vampire_the_masquerade_bloodlines_d03d6f967d.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_d03d6f967d", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 8.38, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_d03d6f967d", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_d03d6f967d .jpg image/jpeg 296.24 https://res.cloudinary.com/won-games/image/upload/v1621522998/vampire_the_masquerade_bloodlines_d03d6f967d.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_d03d6f967d", "resource_type": "image"} \N \N 2021-05-20 12:03:27.141-03 2021-05-20 12:03:27.141-03 148 diablo.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_diablo_0d6b42cf3c.jpg", "hash": "thumbnail_diablo_0d6b42cf3c", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 7.66, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_diablo_0d6b42cf3c", "resource_type": "image"}}} diablo_0d6b42cf3c .jpg image/jpeg 152.06 https://res.cloudinary.com/won-games/image/upload/v1621522995/diablo_0d6b42cf3c.jpg \N cloudinary {"public_id": "diablo_0d6b42cf3c", "resource_type": "image"} \N \N 2021-05-20 12:03:27.153-03 2021-05-20 12:03:27.153-03 151 dorfromantik.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_dorfromantik_95c1946d59.jpg", "hash": "thumbnail_dorfromantik_95c1946d59", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 6.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dorfromantik_95c1946d59", "resource_type": "image"}}} dorfromantik_95c1946d59 .jpg image/jpeg 416.17 https://res.cloudinary.com/won-games/image/upload/v1621522997/dorfromantik_95c1946d59.jpg \N cloudinary {"public_id": "dorfromantik_95c1946d59", "resource_type": "image"} \N \N 2021-05-20 12:03:27.228-03 2021-05-20 12:03:27.228-03 50 neverwinter-nights-2-complete.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522987/thumbnail_neverwinter_nights_2_complete_3516abc07a.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_3516abc07a", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 11.25, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_3516abc07a", "resource_type": "image"}}} neverwinter_nights_2_complete_3516abc07a .jpg image/jpeg 136.56 https://res.cloudinary.com/won-games/image/upload/v1621522984/neverwinter_nights_2_complete_3516abc07a.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_3516abc07a", "resource_type": "image"} \N \N 2021-05-20 12:03:08.283-03 2021-05-20 12:03:08.283-03 51 neverwinter-nights-2-complete.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522993/thumbnail_neverwinter_nights_2_complete_288f72d877.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_288f72d877", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 7.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_288f72d877", "resource_type": "image"}}} neverwinter_nights_2_complete_288f72d877 .jpg image/jpeg 97.60 https://res.cloudinary.com/won-games/image/upload/v1621522984/neverwinter_nights_2_complete_288f72d877.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_288f72d877", "resource_type": "image"} \N \N 2021-05-20 12:03:13.802-03 2021-05-20 12:03:13.802-03 56 neverwinter-nights-2-complete.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_neverwinter_nights_2_complete_b8ed38220a.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_b8ed38220a", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 7.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_b8ed38220a", "resource_type": "image"}}} neverwinter_nights_2_complete_b8ed38220a .jpg image/jpeg 88.52 https://res.cloudinary.com/won-games/image/upload/v1621522986/neverwinter_nights_2_complete_b8ed38220a.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_b8ed38220a", "resource_type": "image"} \N \N 2021-05-20 12:03:15.298-03 2021-05-20 12:03:15.298-03 58 metal-gear-solid-2-substance.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_metal_gear_solid_2_substance_a7c8eb4558.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_a7c8eb4558", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 8.32, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_a7c8eb4558", "resource_type": "image"}}} metal_gear_solid_2_substance_a7c8eb4558 .jpg image/jpeg 219.89 https://res.cloudinary.com/won-games/image/upload/v1621522986/metal_gear_solid_2_substance_a7c8eb4558.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_a7c8eb4558", "resource_type": "image"} \N \N 2021-05-20 12:03:15.613-03 2021-05-20 12:03:15.613-03 59 neverwinter-nights-2-complete.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_neverwinter_nights_2_complete_2e5c81467b.jpg", "hash": "thumbnail_neverwinter_nights_2_complete_2e5c81467b", "mime": "image/jpeg", "name": "thumbnail_neverwinter-nights-2-complete.jpg", "path": null, "size": 10.86, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_neverwinter_nights_2_complete_2e5c81467b", "resource_type": "image"}}} neverwinter_nights_2_complete_2e5c81467b .jpg image/jpeg 156.87 https://res.cloudinary.com/won-games/image/upload/v1621522985/neverwinter_nights_2_complete_2e5c81467b.jpg \N cloudinary {"public_id": "neverwinter_nights_2_complete_2e5c81467b", "resource_type": "image"} \N \N 2021-05-20 12:03:15.67-03 2021-05-20 12:03:15.67-03 64 risk-of-rain.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_risk_of_rain_1a8e306e8e.jpg", "hash": "thumbnail_risk_of_rain_1a8e306e8e", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 6.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_1a8e306e8e", "resource_type": "image"}}} risk_of_rain_1a8e306e8e .jpg image/jpeg 195.10 https://res.cloudinary.com/won-games/image/upload/v1621522987/risk_of_rain_1a8e306e8e.jpg \N cloudinary {"public_id": "risk_of_rain_1a8e306e8e", "resource_type": "image"} \N \N 2021-05-20 12:03:16.894-03 2021-05-20 12:03:16.894-03 65 thronebreaker-the-witcher-tales.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_thronebreaker_the_witcher_tales_cc61d2ebcc.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_cc61d2ebcc", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 9.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_cc61d2ebcc", "resource_type": "image"}}} thronebreaker_the_witcher_tales_cc61d2ebcc .jpg image/jpeg 380.74 https://res.cloudinary.com/won-games/image/upload/v1621522987/thronebreaker_the_witcher_tales_cc61d2ebcc.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_cc61d2ebcc", "resource_type": "image"} \N \N 2021-05-20 12:03:17.004-03 2021-05-20 12:03:17.004-03 66 metal-gear-solid.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522996/thumbnail_metal_gear_solid_0dcc5f8955.jpg", "hash": "thumbnail_metal_gear_solid_0dcc5f8955", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 5.14, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_0dcc5f8955", "resource_type": "image"}}} metal_gear_solid_0dcc5f8955 .jpg image/jpeg 122.24 https://res.cloudinary.com/won-games/image/upload/v1621522987/metal_gear_solid_0dcc5f8955.jpg \N cloudinary {"public_id": "metal_gear_solid_0dcc5f8955", "resource_type": "image"} \N \N 2021-05-20 12:03:17.026-03 2021-05-20 12:03:17.026-03 67 thronebreaker-the-witcher-tales.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522996/thumbnail_thronebreaker_the_witcher_tales_d83f229f2d.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_d83f229f2d", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 6.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_d83f229f2d", "resource_type": "image"}}} thronebreaker_the_witcher_tales_d83f229f2d .jpg image/jpeg 280.04 https://res.cloudinary.com/won-games/image/upload/v1621522988/thronebreaker_the_witcher_tales_d83f229f2d.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_d83f229f2d", "resource_type": "image"} \N \N 2021-05-20 12:03:17.229-03 2021-05-20 12:03:17.229-03 57 dawn-of-man.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_dawn_of_man_8c382ef0e0.jpg", "hash": "thumbnail_dawn_of_man_8c382ef0e0", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 8.34, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_8c382ef0e0", "resource_type": "image"}}} dawn_of_man_8c382ef0e0 .jpg image/jpeg 402.96 https://res.cloudinary.com/won-games/image/upload/v1621522985/dawn_of_man_8c382ef0e0.jpg \N cloudinary {"public_id": "dawn_of_man_8c382ef0e0", "resource_type": "image"} \N \N 2021-05-20 12:03:15.299-03 2021-05-20 12:03:15.299-03 60 kenshi.jpg \N \N 1904 1001 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522994/thumbnail_kenshi_5ca75ff174.jpg", "hash": "thumbnail_kenshi_5ca75ff174", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 8.86, "width": 245, "height": 129, "provider_metadata": {"public_id": "thumbnail_kenshi_5ca75ff174", "resource_type": "image"}}} kenshi_5ca75ff174 .jpg image/jpeg 282.50 https://res.cloudinary.com/won-games/image/upload/v1621522986/kenshi_5ca75ff174.jpg \N cloudinary {"public_id": "kenshi_5ca75ff174", "resource_type": "image"} \N \N 2021-05-20 12:03:15.816-03 2021-05-20 12:03:15.816-03 61 metal-gear-solid-2-substance.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_metal_gear_solid_2_substance_e9699772f9.jpg", "hash": "thumbnail_metal_gear_solid_2_substance_e9699772f9", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid-2-substance.jpg", "path": null, "size": 6.8, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_2_substance_e9699772f9", "resource_type": "image"}}} metal_gear_solid_2_substance_e9699772f9 .jpg image/jpeg 148.96 https://res.cloudinary.com/won-games/image/upload/v1621522986/metal_gear_solid_2_substance_e9699772f9.jpg \N cloudinary {"public_id": "metal_gear_solid_2_substance_e9699772f9", "resource_type": "image"} \N \N 2021-05-20 12:03:16.171-03 2021-05-20 12:03:16.171-03 62 the-witcher.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_the_witcher_d6fff207f4.jpg", "hash": "thumbnail_the_witcher_d6fff207f4", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 7.49, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_the_witcher_d6fff207f4", "resource_type": "image"}}} the_witcher_d6fff207f4 .jpg image/jpeg 101.85 https://res.cloudinary.com/won-games/image/upload/v1621522987/the_witcher_d6fff207f4.jpg \N cloudinary {"public_id": "the_witcher_d6fff207f4", "resource_type": "image"} \N \N 2021-05-20 12:03:16.199-03 2021-05-20 12:03:16.199-03 63 dawn-of-man.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_dawn_of_man_28cfd74f98.jpg", "hash": "thumbnail_dawn_of_man_28cfd74f98", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 9.17, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_28cfd74f98", "resource_type": "image"}}} dawn_of_man_28cfd74f98 .jpg image/jpeg 604.17 https://res.cloudinary.com/won-games/image/upload/v1621522987/dawn_of_man_28cfd74f98.jpg \N cloudinary {"public_id": "dawn_of_man_28cfd74f98", "resource_type": "image"} \N \N 2021-05-20 12:03:16.569-03 2021-05-20 12:03:16.569-03 84 the-witcher-3-wild-hunt.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522999/thumbnail_the_witcher_3_wild_hunt_fad23994e5.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_fad23994e5", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 18.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_fad23994e5", "resource_type": "image"}}} the_witcher_3_wild_hunt_fad23994e5 .jpg image/jpeg 689.52 https://res.cloudinary.com/won-games/image/upload/v1621522990/the_witcher_3_wild_hunt_fad23994e5.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_fad23994e5", "resource_type": "image"} \N \N 2021-05-20 12:03:20.572-03 2021-05-20 12:03:20.572-03 110 the-witcher.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_f505c5068a.jpg", "hash": "thumbnail_the_witcher_f505c5068a", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 10.61, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_the_witcher_f505c5068a", "resource_type": "image"}}} the_witcher_f505c5068a .jpg image/jpeg 139.20 https://res.cloudinary.com/won-games/image/upload/v1621522994/the_witcher_f505c5068a.jpg \N cloudinary {"public_id": "the_witcher_f505c5068a", "resource_type": "image"} \N \N 2021-05-20 12:03:24.809-03 2021-05-20 12:03:24.809-03 123 the-mansion.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_the_mansion_0d8ecf5912.jpg", "hash": "thumbnail_the_mansion_0d8ecf5912", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 3.98, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_mansion_0d8ecf5912", "resource_type": "image"}}} the_mansion_0d8ecf5912 .jpg image/jpeg 206.15 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_mansion_0d8ecf5912.jpg \N cloudinary {"public_id": "the_mansion_0d8ecf5912", "resource_type": "image"} \N \N 2021-05-20 12:03:26.253-03 2021-05-20 12:03:26.253-03 124 the-witcher-3-wild-hunt.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_the_witcher_3_wild_hunt_c863d8a38d.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_c863d8a38d", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 14.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_c863d8a38d", "resource_type": "image"}}} the_witcher_3_wild_hunt_c863d8a38d .jpg image/jpeg 373.34 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_3_wild_hunt_c863d8a38d.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_c863d8a38d", "resource_type": "image"} \N \N 2021-05-20 12:03:26.37-03 2021-05-20 12:03:26.37-03 125 the-witcher-2.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_the_witcher_2_76b1b826c6.jpg", "hash": "thumbnail_the_witcher_2_76b1b826c6", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 21.06, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_76b1b826c6", "resource_type": "image"}}} the_witcher_2_76b1b826c6 .jpg image/jpeg 89.48 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_2_76b1b826c6.jpg \N cloudinary {"public_id": "the_witcher_2_76b1b826c6", "resource_type": "image"} \N \N 2021-05-20 12:03:26.415-03 2021-05-20 12:03:26.415-03 68 dawn-of-man.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522995/thumbnail_dawn_of_man_caa618a47f.jpg", "hash": "thumbnail_dawn_of_man_caa618a47f", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 9.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_caa618a47f", "resource_type": "image"}}} dawn_of_man_caa618a47f .jpg image/jpeg 503.32 https://res.cloudinary.com/won-games/image/upload/v1621522987/dawn_of_man_caa618a47f.jpg \N cloudinary {"public_id": "dawn_of_man_caa618a47f", "resource_type": "image"} \N \N 2021-05-20 12:03:17.652-03 2021-05-20 12:03:17.652-03 69 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522996/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26 .jpg image/jpeg 284.96 https://res.cloudinary.com/won-games/image/upload/v1621522988/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_71624a5d26", "resource_type": "image"} \N \N 2021-05-20 12:03:17.869-03 2021-05-20 12:03:17.869-03 70 metal-gear-solid.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522996/thumbnail_metal_gear_solid_438e2ddd07.jpg", "hash": "thumbnail_metal_gear_solid_438e2ddd07", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 5.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_438e2ddd07", "resource_type": "image"}}} metal_gear_solid_438e2ddd07 .jpg image/jpeg 124.97 https://res.cloudinary.com/won-games/image/upload/v1621522989/metal_gear_solid_438e2ddd07.jpg \N cloudinary {"public_id": "metal_gear_solid_438e2ddd07", "resource_type": "image"} \N \N 2021-05-20 12:03:17.916-03 2021-05-20 12:03:17.916-03 71 silent-hill-4-the-room.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522997/thumbnail_silent_hill_4_the_room_c2e2a5f85c.jpg", "hash": "thumbnail_silent_hill_4_the_room_c2e2a5f85c", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 5.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_c2e2a5f85c", "resource_type": "image"}}} silent_hill_4_the_room_c2e2a5f85c .jpg image/jpeg 186.93 https://res.cloudinary.com/won-games/image/upload/v1621522989/silent_hill_4_the_room_c2e2a5f85c.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_c2e2a5f85c", "resource_type": "image"} \N \N 2021-05-20 12:03:17.979-03 2021-05-20 12:03:17.979-03 72 swat-4-gold-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522996/thumbnail_swat_4_gold_edition_72c9c516b3.jpg", "hash": "thumbnail_swat_4_gold_edition_72c9c516b3", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 6.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_72c9c516b3", "resource_type": "image"}}} swat_4_gold_edition_72c9c516b3 .jpg image/jpeg 256.92 https://res.cloudinary.com/won-games/image/upload/v1621522988/swat_4_gold_edition_72c9c516b3.jpg \N cloudinary {"public_id": "swat_4_gold_edition_72c9c516b3", "resource_type": "image"} \N \N 2021-05-20 12:03:18.233-03 2021-05-20 12:03:18.233-03 73 baldurs-gate-iii.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522997/thumbnail_baldurs_gate_iii_513986100c.jpg", "hash": "thumbnail_baldurs_gate_iii_513986100c", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 31.93, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_513986100c", "resource_type": "image"}}} baldurs_gate_iii_513986100c .jpg image/jpeg 818.33 https://res.cloudinary.com/won-games/image/upload/v1621522989/baldurs_gate_iii_513986100c.jpg \N cloudinary {"public_id": "baldurs_gate_iii_513986100c", "resource_type": "image"} \N \N 2021-05-20 12:03:18.344-03 2021-05-20 12:03:18.344-03 74 swat-4-gold-edition.jpg \N \N 1680 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522997/thumbnail_swat_4_gold_edition_1e5de03601.jpg", "hash": "thumbnail_swat_4_gold_edition_1e5de03601", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 7.53, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_1e5de03601", "resource_type": "image"}}} swat_4_gold_edition_1e5de03601 .jpg image/jpeg 263.02 https://res.cloudinary.com/won-games/image/upload/v1621522989/swat_4_gold_edition_1e5de03601.jpg \N cloudinary {"public_id": "swat_4_gold_edition_1e5de03601", "resource_type": "image"} \N \N 2021-05-20 12:03:18.795-03 2021-05-20 12:03:18.795-03 75 dawn-of-man.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522997/thumbnail_dawn_of_man_3460c6dd37.jpg", "hash": "thumbnail_dawn_of_man_3460c6dd37", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 8.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_3460c6dd37", "resource_type": "image"}}} dawn_of_man_3460c6dd37 .jpg image/jpeg 657.92 https://res.cloudinary.com/won-games/image/upload/v1621522989/dawn_of_man_3460c6dd37.jpg \N cloudinary {"public_id": "dawn_of_man_3460c6dd37", "resource_type": "image"} \N \N 2021-05-20 12:03:18.908-03 2021-05-20 12:03:18.908-03 76 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495 .jpg image/jpeg 348.16 https://res.cloudinary.com/won-games/image/upload/v1621522989/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_eed5103495", "resource_type": "image"} \N \N 2021-05-20 12:03:19.36-03 2021-05-20 12:03:19.36-03 77 metal-gear-solid.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_metal_gear_solid_6b3fd68883.jpg", "hash": "thumbnail_metal_gear_solid_6b3fd68883", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 4.62, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_6b3fd68883", "resource_type": "image"}}} metal_gear_solid_6b3fd68883 .jpg image/jpeg 153.74 https://res.cloudinary.com/won-games/image/upload/v1621522990/metal_gear_solid_6b3fd68883.jpg \N cloudinary {"public_id": "metal_gear_solid_6b3fd68883", "resource_type": "image"} \N \N 2021-05-20 12:03:19.471-03 2021-05-20 12:03:19.471-03 78 dawn-of-man.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_dawn_of_man_1ccdb4cee6.jpg", "hash": "thumbnail_dawn_of_man_1ccdb4cee6", "mime": "image/jpeg", "name": "thumbnail_dawn-of-man.jpg", "path": null, "size": 9.73, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dawn_of_man_1ccdb4cee6", "resource_type": "image"}}} dawn_of_man_1ccdb4cee6 .jpg image/jpeg 518.70 https://res.cloudinary.com/won-games/image/upload/v1621522989/dawn_of_man_1ccdb4cee6.jpg \N cloudinary {"public_id": "dawn_of_man_1ccdb4cee6", "resource_type": "image"} \N \N 2021-05-20 12:03:19.532-03 2021-05-20 12:03:19.532-03 79 the-witcher-3-wild-hunt.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_the_witcher_3_wild_hunt_d263c96a18.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_d263c96a18", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 18.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_d263c96a18", "resource_type": "image"}}} the_witcher_3_wild_hunt_d263c96a18 .jpg image/jpeg 599.06 https://res.cloudinary.com/won-games/image/upload/v1621522990/the_witcher_3_wild_hunt_d263c96a18.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_d263c96a18", "resource_type": "image"} \N \N 2021-05-20 12:03:19.548-03 2021-05-20 12:03:19.548-03 80 metal-gear-solid.jpg \N \N 1920 1200 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522997/thumbnail_metal_gear_solid_603ff0fc97.jpg", "hash": "thumbnail_metal_gear_solid_603ff0fc97", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 4.94, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_603ff0fc97", "resource_type": "image"}}} metal_gear_solid_603ff0fc97 .jpg image/jpeg 168.09 https://res.cloudinary.com/won-games/image/upload/v1621522990/metal_gear_solid_603ff0fc97.jpg \N cloudinary {"public_id": "metal_gear_solid_603ff0fc97", "resource_type": "image"} \N \N 2021-05-20 12:03:19.577-03 2021-05-20 12:03:19.577-03 81 metal-gear-solid.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_metal_gear_solid_94d56eaf84.jpg", "hash": "thumbnail_metal_gear_solid_94d56eaf84", "mime": "image/jpeg", "name": "thumbnail_metal-gear-solid.jpg", "path": null, "size": 6.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_metal_gear_solid_94d56eaf84", "resource_type": "image"}}} metal_gear_solid_94d56eaf84 .jpg image/jpeg 305.53 https://res.cloudinary.com/won-games/image/upload/v1621522989/metal_gear_solid_94d56eaf84.jpg \N cloudinary {"public_id": "metal_gear_solid_94d56eaf84", "resource_type": "image"} \N \N 2021-05-20 12:03:19.731-03 2021-05-20 12:03:19.731-03 82 swat-4-gold-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_swat_4_gold_edition_d15a558c21.jpg", "hash": "thumbnail_swat_4_gold_edition_d15a558c21", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_d15a558c21", "resource_type": "image"}}} swat_4_gold_edition_d15a558c21 .jpg image/jpeg 260.93 https://res.cloudinary.com/won-games/image/upload/v1621522989/swat_4_gold_edition_d15a558c21.jpg \N cloudinary {"public_id": "swat_4_gold_edition_d15a558c21", "resource_type": "image"} \N \N 2021-05-20 12:03:19.744-03 2021-05-20 12:03:19.744-03 83 lost-ruins.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522998/thumbnail_lost_ruins_34e03a8fb6.jpg", "hash": "thumbnail_lost_ruins_34e03a8fb6", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 8.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_lost_ruins_34e03a8fb6", "resource_type": "image"}}} lost_ruins_34e03a8fb6 .jpg image/jpeg 2070.65 https://res.cloudinary.com/won-games/image/upload/v1621522990/lost_ruins_34e03a8fb6.jpg \N cloudinary {"public_id": "lost_ruins_34e03a8fb6", "resource_type": "image"} \N \N 2021-05-20 12:03:19.812-03 2021-05-20 12:03:19.812-03 85 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522999/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_870e338c50.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_870e338c50", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 9.49, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_870e338c50", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_870e338c50 .jpg image/jpeg 514.18 https://res.cloudinary.com/won-games/image/upload/v1621522991/the_witcher_3_wild_hunt_hearts_of_stone_870e338c50.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_870e338c50", "resource_type": "image"} \N \N 2021-05-20 12:03:20.572-03 2021-05-20 12:03:20.572-03 86 swat-4-gold-edition.jpg \N \N 1680 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522999/thumbnail_swat_4_gold_edition_f2e4c88319.jpg", "hash": "thumbnail_swat_4_gold_edition_f2e4c88319", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 8.47, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_f2e4c88319", "resource_type": "image"}}} swat_4_gold_edition_f2e4c88319 .jpg image/jpeg 246.97 https://res.cloudinary.com/won-games/image/upload/v1621522990/swat_4_gold_edition_f2e4c88319.jpg \N cloudinary {"public_id": "swat_4_gold_edition_f2e4c88319", "resource_type": "image"} \N \N 2021-05-20 12:03:20.659-03 2021-05-20 12:03:20.659-03 87 silent-hill-4-the-room.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522999/thumbnail_silent_hill_4_the_room_63711053d9.jpg", "hash": "thumbnail_silent_hill_4_the_room_63711053d9", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 6.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_63711053d9", "resource_type": "image"}}} silent_hill_4_the_room_63711053d9 .jpg image/jpeg 200.23 https://res.cloudinary.com/won-games/image/upload/v1621522991/silent_hill_4_the_room_63711053d9.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_63711053d9", "resource_type": "image"} \N \N 2021-05-20 12:03:20.703-03 2021-05-20 12:03:20.703-03 88 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621522999/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 6.8, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466 .jpg image/jpeg 346.09 https://res.cloudinary.com/won-games/image/upload/v1621522989/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_e2b6510466", "resource_type": "image"} \N \N 2021-05-20 12:03:20.954-03 2021-05-20 12:03:20.954-03 89 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523000/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe .jpg image/jpeg 312.31 https://res.cloudinary.com/won-games/image/upload/v1621522991/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_cdd31d41fe", "resource_type": "image"} \N \N 2021-05-20 12:03:21.279-03 2021-05-20 12:03:21.279-03 90 fallout-3-game-of-the-year-edition.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523001/thumbnail_fallout_3_game_of_the_year_edition_ec432c8c7f.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_ec432c8c7f", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 36.28, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_ec432c8c7f", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_ec432c8c7f .jpg image/jpeg 840.39 https://res.cloudinary.com/won-games/image/upload/v1621522992/fallout_3_game_of_the_year_edition_ec432c8c7f.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_ec432c8c7f", "resource_type": "image"} \N \N 2021-05-20 12:03:22.786-03 2021-05-20 12:03:22.786-03 91 silent-hill-4-the-room.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523001/thumbnail_silent_hill_4_the_room_d33863b611.jpg", "hash": "thumbnail_silent_hill_4_the_room_d33863b611", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 5.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_d33863b611", "resource_type": "image"}}} silent_hill_4_the_room_d33863b611 .jpg image/jpeg 161.56 https://res.cloudinary.com/won-games/image/upload/v1621522993/silent_hill_4_the_room_d33863b611.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_d33863b611", "resource_type": "image"} \N \N 2021-05-20 12:03:22.811-03 2021-05-20 12:03:22.811-03 92 space-haven.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523001/thumbnail_space_haven_1d7dac7859.jpg", "hash": "thumbnail_space_haven_1d7dac7859", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 10.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_space_haven_1d7dac7859", "resource_type": "image"}}} space_haven_1d7dac7859 .jpg image/jpeg 722.58 https://res.cloudinary.com/won-games/image/upload/v1621522992/space_haven_1d7dac7859.jpg \N cloudinary {"public_id": "space_haven_1d7dac7859", "resource_type": "image"} \N \N 2021-05-20 12:03:22.889-03 2021-05-20 12:03:22.889-03 93 risk-of-rain.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_risk_of_rain_1eb8ccb292.jpg", "hash": "thumbnail_risk_of_rain_1eb8ccb292", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 5.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_1eb8ccb292", "resource_type": "image"}}} risk_of_rain_1eb8ccb292 .jpg image/jpeg 147.49 https://res.cloudinary.com/won-games/image/upload/v1621522993/risk_of_rain_1eb8ccb292.jpg \N cloudinary {"public_id": "risk_of_rain_1eb8ccb292", "resource_type": "image"} \N \N 2021-05-20 12:03:22.927-03 2021-05-20 12:03:22.927-03 94 diablo.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523001/thumbnail_diablo_d9f47c4255.jpg", "hash": "thumbnail_diablo_d9f47c4255", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 8.03, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_diablo_d9f47c4255", "resource_type": "image"}}} diablo_d9f47c4255 .jpg image/jpeg 164.82 https://res.cloudinary.com/won-games/image/upload/v1621522993/diablo_d9f47c4255.jpg \N cloudinary {"public_id": "diablo_d9f47c4255", "resource_type": "image"} \N \N 2021-05-20 12:03:22.971-03 2021-05-20 12:03:22.971-03 95 thronebreaker-the-witcher-tales.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_thronebreaker_the_witcher_tales_1731002efe.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_1731002efe", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 7.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_1731002efe", "resource_type": "image"}}} thronebreaker_the_witcher_tales_1731002efe .jpg image/jpeg 343.62 https://res.cloudinary.com/won-games/image/upload/v1621522993/thronebreaker_the_witcher_tales_1731002efe.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_1731002efe", "resource_type": "image"} \N \N 2021-05-20 12:03:23.177-03 2021-05-20 12:03:23.177-03 96 lost-ruins.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523001/thumbnail_lost_ruins_e1b9902a38.jpg", "hash": "thumbnail_lost_ruins_e1b9902a38", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 9.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_lost_ruins_e1b9902a38", "resource_type": "image"}}} lost_ruins_e1b9902a38 .jpg image/jpeg 2237.77 https://res.cloudinary.com/won-games/image/upload/v1621522992/lost_ruins_e1b9902a38.jpg \N cloudinary {"public_id": "lost_ruins_e1b9902a38", "resource_type": "image"} \N \N 2021-05-20 12:03:23.191-03 2021-05-20 12:03:23.191-03 97 spiritfarer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_spiritfarer_b73e4c77b7.jpg", "hash": "thumbnail_spiritfarer_b73e4c77b7", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 6.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_b73e4c77b7", "resource_type": "image"}}} spiritfarer_b73e4c77b7 .jpg image/jpeg 318.89 https://res.cloudinary.com/won-games/image/upload/v1621522994/spiritfarer_b73e4c77b7.jpg \N cloudinary {"public_id": "spiritfarer_b73e4c77b7", "resource_type": "image"} \N \N 2021-05-20 12:03:23.204-03 2021-05-20 12:03:23.204-03 98 kenshi.jpg \N \N 1904 1042 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_kenshi_ab88f21065.jpg", "hash": "thumbnail_kenshi_ab88f21065", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 9.63, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_kenshi_ab88f21065", "resource_type": "image"}}} kenshi_ab88f21065 .jpg image/jpeg 316.66 https://res.cloudinary.com/won-games/image/upload/v1621522993/kenshi_ab88f21065.jpg \N cloudinary {"public_id": "kenshi_ab88f21065", "resource_type": "image"} \N \N 2021-05-20 12:03:23.305-03 2021-05-20 12:03:23.305-03 99 thronebreaker-the-witcher-tales.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_thronebreaker_the_witcher_tales_3c8cd01587.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_3c8cd01587", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 10.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_3c8cd01587", "resource_type": "image"}}} thronebreaker_the_witcher_tales_3c8cd01587 .jpg image/jpeg 480.26 https://res.cloudinary.com/won-games/image/upload/v1621522993/thronebreaker_the_witcher_tales_3c8cd01587.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_3c8cd01587", "resource_type": "image"} \N \N 2021-05-20 12:03:23.4-03 2021-05-20 12:03:23.4-03 100 diablo.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_diablo_ea8014eb6e.jpg", "hash": "thumbnail_diablo_ea8014eb6e", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 9.74, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_diablo_ea8014eb6e", "resource_type": "image"}}} diablo_ea8014eb6e .jpg image/jpeg 182.73 https://res.cloudinary.com/won-games/image/upload/v1621522993/diablo_ea8014eb6e.jpg \N cloudinary {"public_id": "diablo_ea8014eb6e", "resource_type": "image"} \N \N 2021-05-20 12:03:23.429-03 2021-05-20 12:03:23.429-03 101 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895 .jpg image/jpeg 293.76 https://res.cloudinary.com/won-games/image/upload/v1621522993/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_382c1e7895", "resource_type": "image"} \N \N 2021-05-20 12:03:23.52-03 2021-05-20 12:03:23.52-03 102 diablo.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_diablo_06a27b364f.jpg", "hash": "thumbnail_diablo_06a27b364f", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 7.61, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_diablo_06a27b364f", "resource_type": "image"}}} diablo_06a27b364f .jpg image/jpeg 141.85 https://res.cloudinary.com/won-games/image/upload/v1621522994/diablo_06a27b364f.jpg \N cloudinary {"public_id": "diablo_06a27b364f", "resource_type": "image"} \N \N 2021-05-20 12:03:23.745-03 2021-05-20 12:03:23.745-03 103 huntdown.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_huntdown_34b569a4d2.jpg", "hash": "thumbnail_huntdown_34b569a4d2", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 12.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huntdown_34b569a4d2", "resource_type": "image"}}} huntdown_34b569a4d2 .jpg image/jpeg 450.91 https://res.cloudinary.com/won-games/image/upload/v1621522993/huntdown_34b569a4d2.jpg \N cloudinary {"public_id": "huntdown_34b569a4d2", "resource_type": "image"} \N \N 2021-05-20 12:03:23.867-03 2021-05-20 12:03:23.867-03 104 silent-hill-4-the-room.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_silent_hill_4_the_room_6a569b636f.jpg", "hash": "thumbnail_silent_hill_4_the_room_6a569b636f", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 6.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_6a569b636f", "resource_type": "image"}}} silent_hill_4_the_room_6a569b636f .jpg image/jpeg 299.23 https://res.cloudinary.com/won-games/image/upload/v1621522994/silent_hill_4_the_room_6a569b636f.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_6a569b636f", "resource_type": "image"} \N \N 2021-05-20 12:03:23.939-03 2021-05-20 12:03:23.939-03 105 the-witcher.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_the_witcher_2ed7edebd4.jpg", "hash": "thumbnail_the_witcher_2ed7edebd4", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 8.64, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_the_witcher_2ed7edebd4", "resource_type": "image"}}} the_witcher_2ed7edebd4 .jpg image/jpeg 131.79 https://res.cloudinary.com/won-games/image/upload/v1621522994/the_witcher_2ed7edebd4.jpg \N cloudinary {"public_id": "the_witcher_2ed7edebd4", "resource_type": "image"} \N \N 2021-05-20 12:03:24.153-03 2021-05-20 12:03:24.153-03 106 risk-of-rain.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523002/thumbnail_risk_of_rain_bf9f22c4c1.jpg", "hash": "thumbnail_risk_of_rain_bf9f22c4c1", "mime": "image/jpeg", "name": "thumbnail_risk-of-rain.jpg", "path": null, "size": 5.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_risk_of_rain_bf9f22c4c1", "resource_type": "image"}}} risk_of_rain_bf9f22c4c1 .jpg image/jpeg 162.93 https://res.cloudinary.com/won-games/image/upload/v1621522992/risk_of_rain_bf9f22c4c1.jpg \N cloudinary {"public_id": "risk_of_rain_bf9f22c4c1", "resource_type": "image"} \N \N 2021-05-20 12:03:24.287-03 2021-05-20 12:03:24.287-03 107 hyper-light-drifter.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_hyper_light_drifter_9905b0adf5.jpg", "hash": "thumbnail_hyper_light_drifter_9905b0adf5", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 8.66, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_9905b0adf5", "resource_type": "image"}}} hyper_light_drifter_9905b0adf5 .jpg image/jpeg 185.89 https://res.cloudinary.com/won-games/image/upload/v1621522994/hyper_light_drifter_9905b0adf5.jpg \N cloudinary {"public_id": "hyper_light_drifter_9905b0adf5", "resource_type": "image"} \N \N 2021-05-20 12:03:24.477-03 2021-05-20 12:03:24.477-03 108 kenshi.jpg \N \N 1904 1042 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_kenshi_aeae5429c3.jpg", "hash": "thumbnail_kenshi_aeae5429c3", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 10.45, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_kenshi_aeae5429c3", "resource_type": "image"}}} kenshi_aeae5429c3 .jpg image/jpeg 421.89 https://res.cloudinary.com/won-games/image/upload/v1621522994/kenshi_aeae5429c3.jpg \N cloudinary {"public_id": "kenshi_aeae5429c3", "resource_type": "image"} \N \N 2021-05-20 12:03:24.699-03 2021-05-20 12:03:24.699-03 109 the-witcher-3-wild-hunt.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_3_wild_hunt_a81b6a5b16.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_a81b6a5b16", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 18.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_a81b6a5b16", "resource_type": "image"}}} the_witcher_3_wild_hunt_a81b6a5b16 .jpg image/jpeg 463.68 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_3_wild_hunt_a81b6a5b16.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_a81b6a5b16", "resource_type": "image"} \N \N 2021-05-20 12:03:24.734-03 2021-05-20 12:03:24.734-03 111 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 14.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd .jpg image/jpeg 384.08 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_8e9d9bf7fd", "resource_type": "image"} \N \N 2021-05-20 12:03:24.809-03 2021-05-20 12:03:24.809-03 112 the-witcher-3-wild-hunt.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_3_wild_hunt_43e34dcd92.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_43e34dcd92", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt.jpg", "path": null, "size": 13.14, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_43e34dcd92", "resource_type": "image"}}} the_witcher_3_wild_hunt_43e34dcd92 .jpg image/jpeg 382.16 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_3_wild_hunt_43e34dcd92.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_43e34dcd92", "resource_type": "image"} \N \N 2021-05-20 12:03:24.855-03 2021-05-20 12:03:24.855-03 113 the-witcher.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_9ec5c1aa38.jpg", "hash": "thumbnail_the_witcher_9ec5c1aa38", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 7.36, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_the_witcher_9ec5c1aa38", "resource_type": "image"}}} the_witcher_9ec5c1aa38 .jpg image/jpeg 108.42 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_9ec5c1aa38.jpg \N cloudinary {"public_id": "the_witcher_9ec5c1aa38", "resource_type": "image"} \N \N 2021-05-20 12:03:24.979-03 2021-05-20 12:03:24.979-03 114 hyper-light-drifter.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_hyper_light_drifter_0f0896a465.jpg", "hash": "thumbnail_hyper_light_drifter_0f0896a465", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 4.92, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_0f0896a465", "resource_type": "image"}}} hyper_light_drifter_0f0896a465 .jpg image/jpeg 170.87 https://res.cloudinary.com/won-games/image/upload/v1621522995/hyper_light_drifter_0f0896a465.jpg \N cloudinary {"public_id": "hyper_light_drifter_0f0896a465", "resource_type": "image"} \N \N 2021-05-20 12:03:25.003-03 2021-05-20 12:03:25.003-03 115 the-witcher-2.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_the_witcher_2_aee466eafe.jpg", "hash": "thumbnail_the_witcher_2_aee466eafe", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 19.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_aee466eafe", "resource_type": "image"}}} the_witcher_2_aee466eafe .jpg image/jpeg 88.72 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_2_aee466eafe.jpg \N cloudinary {"public_id": "the_witcher_2_aee466eafe", "resource_type": "image"} \N \N 2021-05-20 12:03:25.161-03 2021-05-20 12:03:25.161-03 116 swat-4-gold-edition.jpg \N \N 1680 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_swat_4_gold_edition_f064e3a8da.jpg", "hash": "thumbnail_swat_4_gold_edition_f064e3a8da", "mime": "image/jpeg", "name": "thumbnail_swat-4-gold-edition.jpg", "path": null, "size": 9.38, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_swat_4_gold_edition_f064e3a8da", "resource_type": "image"}}} swat_4_gold_edition_f064e3a8da .jpg image/jpeg 295.70 https://res.cloudinary.com/won-games/image/upload/v1621522994/swat_4_gold_edition_f064e3a8da.jpg \N cloudinary {"public_id": "swat_4_gold_edition_f064e3a8da", "resource_type": "image"} \N \N 2021-05-20 12:03:25.218-03 2021-05-20 12:03:25.218-03 126 katana-zero.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_katana_zero_2384274dfd.jpg", "hash": "thumbnail_katana_zero_2384274dfd", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 4.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_katana_zero_2384274dfd", "resource_type": "image"}}} katana_zero_2384274dfd .jpg image/jpeg 211.27 https://res.cloudinary.com/won-games/image/upload/v1621522995/katana_zero_2384274dfd.jpg \N cloudinary {"public_id": "katana_zero_2384274dfd", "resource_type": "image"} \N \N 2021-05-20 12:03:26.485-03 2021-05-20 12:03:26.485-03 117 siege-survival-gloria-victis.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_siege_survival_gloria_victis_5663872007.jpg", "hash": "thumbnail_siege_survival_gloria_victis_5663872007", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 9.27, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_5663872007", "resource_type": "image"}}} siege_survival_gloria_victis_5663872007 .jpg image/jpeg 222.70 https://res.cloudinary.com/won-games/image/upload/v1621522995/siege_survival_gloria_victis_5663872007.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_5663872007", "resource_type": "image"} \N \N 2021-05-20 12:03:25.445-03 2021-05-20 12:03:25.445-03 118 hyper-light-drifter.jpg \N \N 1920 1079 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_hyper_light_drifter_04ad58a87a.jpg", "hash": "thumbnail_hyper_light_drifter_04ad58a87a", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 7.18, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_04ad58a87a", "resource_type": "image"}}} hyper_light_drifter_04ad58a87a .jpg image/jpeg 239.06 https://res.cloudinary.com/won-games/image/upload/v1621522995/hyper_light_drifter_04ad58a87a.jpg \N cloudinary {"public_id": "hyper_light_drifter_04ad58a87a", "resource_type": "image"} \N \N 2021-05-20 12:03:25.77-03 2021-05-20 12:03:25.77-03 119 the-witcher-2.jpg \N \N 710 399 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523003/thumbnail_the_witcher_2_e00e839856.jpg", "hash": "thumbnail_the_witcher_2_e00e839856", "mime": "image/jpeg", "name": "thumbnail_the-witcher-2.jpg", "path": null, "size": 19.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_2_e00e839856", "resource_type": "image"}}} the_witcher_2_e00e839856 .jpg image/jpeg 88.84 https://res.cloudinary.com/won-games/image/upload/v1621522995/the_witcher_2_e00e839856.jpg \N cloudinary {"public_id": "the_witcher_2_e00e839856", "resource_type": "image"} \N \N 2021-05-20 12:03:25.855-03 2021-05-20 12:03:25.855-03 120 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 7.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb .jpg image/jpeg 336.08 https://res.cloudinary.com/won-games/image/upload/v1621522995/werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_57c1ddc0bb", "resource_type": "image"} \N \N 2021-05-20 12:03:25.995-03 2021-05-20 12:03:25.995-03 121 silent-hill-4-the-room.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_silent_hill_4_the_room_d8626c9bce.jpg", "hash": "thumbnail_silent_hill_4_the_room_d8626c9bce", "mime": "image/jpeg", "name": "thumbnail_silent-hill-4-the-room.jpg", "path": null, "size": 6.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_silent_hill_4_the_room_d8626c9bce", "resource_type": "image"}}} silent_hill_4_the_room_d8626c9bce .jpg image/jpeg 176.90 https://res.cloudinary.com/won-games/image/upload/v1621522994/silent_hill_4_the_room_d8626c9bce.jpg \N cloudinary {"public_id": "silent_hill_4_the_room_d8626c9bce", "resource_type": "image"} \N \N 2021-05-20 12:03:26.11-03 2021-05-20 12:03:26.11-03 122 huntdown.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523004/thumbnail_huntdown_f8bb2c8c04.jpg", "hash": "thumbnail_huntdown_f8bb2c8c04", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 8.17, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huntdown_f8bb2c8c04", "resource_type": "image"}}} huntdown_f8bb2c8c04 .jpg image/jpeg 340.93 https://res.cloudinary.com/won-games/image/upload/v1621522995/huntdown_f8bb2c8c04.jpg \N cloudinary {"public_id": "huntdown_f8bb2c8c04", "resource_type": "image"} \N \N 2021-05-20 12:03:26.243-03 2021-05-20 12:03:26.243-03 130 divinity-original-sin-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_divinity_original_sin_2_94925c642c.jpg", "hash": "thumbnail_divinity_original_sin_2_94925c642c", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 10.41, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_94925c642c", "resource_type": "image"}}} divinity_original_sin_2_94925c642c .jpg image/jpeg 559.49 https://res.cloudinary.com/won-games/image/upload/v1621522996/divinity_original_sin_2_94925c642c.jpg \N cloudinary {"public_id": "divinity_original_sin_2_94925c642c", "resource_type": "image"} \N \N 2021-05-20 12:03:26.576-03 2021-05-20 12:03:26.576-03 132 kenshi.jpg \N \N 1902 985 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_kenshi_c579ef768c.jpg", "hash": "thumbnail_kenshi_c579ef768c", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 30.49, "width": 245, "height": 127, "provider_metadata": {"public_id": "thumbnail_kenshi_c579ef768c", "resource_type": "image"}}} kenshi_c579ef768c .jpg image/jpeg 573.54 https://res.cloudinary.com/won-games/image/upload/v1621522996/kenshi_c579ef768c.jpg \N cloudinary {"public_id": "kenshi_c579ef768c", "resource_type": "image"} \N \N 2021-05-20 12:03:26.605-03 2021-05-20 12:03:26.605-03 134 baldurs-gate-iii.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_baldurs_gate_iii_b563c8d614.jpg", "hash": "thumbnail_baldurs_gate_iii_b563c8d614", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 27.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_b563c8d614", "resource_type": "image"}}} baldurs_gate_iii_b563c8d614 .jpg image/jpeg 664.56 https://res.cloudinary.com/won-games/image/upload/v1621522996/baldurs_gate_iii_b563c8d614.jpg \N cloudinary {"public_id": "baldurs_gate_iii_b563c8d614", "resource_type": "image"} \N \N 2021-05-20 12:03:26.627-03 2021-05-20 12:03:26.627-03 135 katana-zero.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_katana_zero_8d98876bd8.jpg", "hash": "thumbnail_katana_zero_8d98876bd8", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 7.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_katana_zero_8d98876bd8", "resource_type": "image"}}} katana_zero_8d98876bd8 .jpg image/jpeg 282.20 https://res.cloudinary.com/won-games/image/upload/v1621522997/katana_zero_8d98876bd8.jpg \N cloudinary {"public_id": "katana_zero_8d98876bd8", "resource_type": "image"} \N \N 2021-05-20 12:03:26.656-03 2021-05-20 12:03:26.656-03 127 fallout-3-game-of-the-year-edition.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_fallout_3_game_of_the_year_edition_2f863ac847.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_2f863ac847", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 30.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_2f863ac847", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_2f863ac847 .jpg image/jpeg 513.01 https://res.cloudinary.com/won-games/image/upload/v1621522996/fallout_3_game_of_the_year_edition_2f863ac847.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_2f863ac847", "resource_type": "image"} \N \N 2021-05-20 12:03:26.509-03 2021-05-20 12:03:26.509-03 128 huntdown.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_huntdown_3bcb086363.jpg", "hash": "thumbnail_huntdown_3bcb086363", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 10.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huntdown_3bcb086363", "resource_type": "image"}}} huntdown_3bcb086363 .jpg image/jpeg 376.77 https://res.cloudinary.com/won-games/image/upload/v1621522995/huntdown_3bcb086363.jpg \N cloudinary {"public_id": "huntdown_3bcb086363", "resource_type": "image"} \N \N 2021-05-20 12:03:26.529-03 2021-05-20 12:03:26.529-03 129 vampire-the-masquerade-bloodlines.jpg \N \N 1280 1024 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_vampire_the_masquerade_bloodlines_0ee1f2cffa.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_0ee1f2cffa", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 5.71, "width": 195, "height": 156, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_0ee1f2cffa", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_0ee1f2cffa .jpg image/jpeg 128.47 https://res.cloudinary.com/won-games/image/upload/v1621522995/vampire_the_masquerade_bloodlines_0ee1f2cffa.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_0ee1f2cffa", "resource_type": "image"} \N \N 2021-05-20 12:03:26.566-03 2021-05-20 12:03:26.566-03 131 huniepop-2-double-date.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_huniepop_2_double_date_02c9fed986.jpg", "hash": "thumbnail_huniepop_2_double_date_02c9fed986", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 11.55, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_02c9fed986", "resource_type": "image"}}} huniepop_2_double_date_02c9fed986 .jpg image/jpeg 1459.23 https://res.cloudinary.com/won-games/image/upload/v1621522995/huniepop_2_double_date_02c9fed986.jpg \N cloudinary {"public_id": "huniepop_2_double_date_02c9fed986", "resource_type": "image"} \N \N 2021-05-20 12:03:26.604-03 2021-05-20 12:03:26.604-03 139 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_64738480a6.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_64738480a6", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 11.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_64738480a6", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_64738480a6 .jpg image/jpeg 423.90 https://res.cloudinary.com/won-games/image/upload/v1621522997/werewolf_the_apocalypse_heart_of_the_forest_64738480a6.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_64738480a6", "resource_type": "image"} \N \N 2021-05-20 12:03:26.907-03 2021-05-20 12:03:26.907-03 144 hyper-light-drifter.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_hyper_light_drifter_5c9ce9f0ca.jpg", "hash": "thumbnail_hyper_light_drifter_5c9ce9f0ca", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 11.11, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_5c9ce9f0ca", "resource_type": "image"}}} hyper_light_drifter_5c9ce9f0ca .jpg image/jpeg 265.70 https://res.cloudinary.com/won-games/image/upload/v1621522998/hyper_light_drifter_5c9ce9f0ca.jpg \N cloudinary {"public_id": "hyper_light_drifter_5c9ce9f0ca", "resource_type": "image"} \N \N 2021-05-20 12:03:27.051-03 2021-05-20 12:03:27.051-03 149 disco-elysium.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_disco_elysium_79aa5ae91a.jpg", "hash": "thumbnail_disco_elysium_79aa5ae91a", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 9.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_disco_elysium_79aa5ae91a", "resource_type": "image"}}} disco_elysium_79aa5ae91a .jpg image/jpeg 417.16 https://res.cloudinary.com/won-games/image/upload/v1621522997/disco_elysium_79aa5ae91a.jpg \N cloudinary {"public_id": "disco_elysium_79aa5ae91a", "resource_type": "image"} \N \N 2021-05-20 12:03:27.159-03 2021-05-20 12:03:27.159-03 150 katana-zero.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_katana_zero_4afeba7473.jpg", "hash": "thumbnail_katana_zero_4afeba7473", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 5.45, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_katana_zero_4afeba7473", "resource_type": "image"}}} katana_zero_4afeba7473 .jpg image/jpeg 261.59 https://res.cloudinary.com/won-games/image/upload/v1621522997/katana_zero_4afeba7473.jpg \N cloudinary {"public_id": "katana_zero_4afeba7473", "resource_type": "image"} \N \N 2021-05-20 12:03:27.22-03 2021-05-20 12:03:27.22-03 152 katana-zero.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_katana_zero_7df679e87f.jpg", "hash": "thumbnail_katana_zero_7df679e87f", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 6.67, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_katana_zero_7df679e87f", "resource_type": "image"}}} katana_zero_7df679e87f .jpg image/jpeg 253.44 https://res.cloudinary.com/won-games/image/upload/v1621522997/katana_zero_7df679e87f.jpg \N cloudinary {"public_id": "katana_zero_7df679e87f", "resource_type": "image"} \N \N 2021-05-20 12:03:27.241-03 2021-05-20 12:03:27.241-03 189 diablo.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_diablo_3ccc647cf0.jpg", "hash": "thumbnail_diablo_3ccc647cf0", "mime": "image/jpeg", "name": "thumbnail_diablo.jpg", "path": null, "size": 9.68, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_diablo_3ccc647cf0", "resource_type": "image"}}} diablo_3ccc647cf0 .jpg image/jpeg 188.65 https://res.cloudinary.com/won-games/image/upload/v1621522996/diablo_3ccc647cf0.jpg \N cloudinary {"public_id": "diablo_3ccc647cf0", "resource_type": "image"} \N \N 2021-05-20 12:03:28.01-03 2021-05-20 12:03:28.01-03 136 the-witcher.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_the_witcher_5dfb1f151d.jpg", "hash": "thumbnail_the_witcher_5dfb1f151d", "mime": "image/jpeg", "name": "thumbnail_the-witcher.jpg", "path": null, "size": 7.93, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_the_witcher_5dfb1f151d", "resource_type": "image"}}} the_witcher_5dfb1f151d .jpg image/jpeg 119.49 https://res.cloudinary.com/won-games/image/upload/v1621522996/the_witcher_5dfb1f151d.jpg \N cloudinary {"public_id": "the_witcher_5dfb1f151d", "resource_type": "image"} \N \N 2021-05-20 12:03:26.742-03 2021-05-20 12:03:26.742-03 138 ghost-of-a-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_ghost_of_a_tale_c40786ee01.jpg", "hash": "thumbnail_ghost_of_a_tale_c40786ee01", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 17.17, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_c40786ee01", "resource_type": "image"}}} ghost_of_a_tale_c40786ee01 .jpg image/jpeg 2432.08 https://res.cloudinary.com/won-games/image/upload/v1621522996/ghost_of_a_tale_c40786ee01.jpg \N cloudinary {"public_id": "ghost_of_a_tale_c40786ee01", "resource_type": "image"} \N \N 2021-05-20 12:03:26.89-03 2021-05-20 12:03:26.89-03 171 siege-survival-gloria-victis.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_siege_survival_gloria_victis_8f6aa531f6.jpg", "hash": "thumbnail_siege_survival_gloria_victis_8f6aa531f6", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 13.91, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_8f6aa531f6", "resource_type": "image"}}} siege_survival_gloria_victis_8f6aa531f6 .jpg image/jpeg 390.57 https://res.cloudinary.com/won-games/image/upload/v1621522999/siege_survival_gloria_victis_8f6aa531f6.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_8f6aa531f6", "resource_type": "image"} \N \N 2021-05-20 12:03:27.685-03 2021-05-20 12:03:27.685-03 172 dorfromantik.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_dorfromantik_628f6c0855.jpg", "hash": "thumbnail_dorfromantik_628f6c0855", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 6.79, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dorfromantik_628f6c0855", "resource_type": "image"}}} dorfromantik_628f6c0855 .jpg image/jpeg 474.22 https://res.cloudinary.com/won-games/image/upload/v1621522999/dorfromantik_628f6c0855.jpg \N cloudinary {"public_id": "dorfromantik_628f6c0855", "resource_type": "image"} \N \N 2021-05-20 12:03:27.702-03 2021-05-20 12:03:27.702-03 173 vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f.jpg", "hash": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-coteries-of-new-york-deluxe-edition.jpg", "path": null, "size": 5.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f", "resource_type": "image"}}} vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f .jpg image/jpeg 187.80 https://res.cloudinary.com/won-games/image/upload/v1621522997/vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f.jpg \N cloudinary {"public_id": "vampire_the_masquerade_coteries_of_new_york_deluxe_edition_163f95247f", "resource_type": "image"} \N \N 2021-05-20 12:03:27.716-03 2021-05-20 12:03:27.716-03 174 foundation.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_foundation_1110650656.jpg", "hash": "thumbnail_foundation_1110650656", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 5.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_foundation_1110650656", "resource_type": "image"}}} foundation_1110650656 .jpg image/jpeg 256.59 https://res.cloudinary.com/won-games/image/upload/v1621522998/foundation_1110650656.jpg \N cloudinary {"public_id": "foundation_1110650656", "resource_type": "image"} \N \N 2021-05-20 12:03:27.733-03 2021-05-20 12:03:27.733-03 178 hyper-light-drifter.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_hyper_light_drifter_db889de1c2.jpg", "hash": "thumbnail_hyper_light_drifter_db889de1c2", "mime": "image/jpeg", "name": "thumbnail_hyper-light-drifter.jpg", "path": null, "size": 7.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hyper_light_drifter_db889de1c2", "resource_type": "image"}}} hyper_light_drifter_db889de1c2 .jpg image/jpeg 193.55 https://res.cloudinary.com/won-games/image/upload/v1621522999/hyper_light_drifter_db889de1c2.jpg \N cloudinary {"public_id": "hyper_light_drifter_db889de1c2", "resource_type": "image"} \N \N 2021-05-20 12:03:27.818-03 2021-05-20 12:03:27.818-03 179 foundation.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_foundation_8b9984d35c.jpg", "hash": "thumbnail_foundation_8b9984d35c", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 10.11, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_foundation_8b9984d35c", "resource_type": "image"}}} foundation_8b9984d35c .jpg image/jpeg 446.23 https://res.cloudinary.com/won-games/image/upload/v1621522998/foundation_8b9984d35c.jpg \N cloudinary {"public_id": "foundation_8b9984d35c", "resource_type": "image"} \N \N 2021-05-20 12:03:27.852-03 2021-05-20 12:03:27.852-03 181 mundaun.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_mundaun_0549394780.jpg", "hash": "thumbnail_mundaun_0549394780", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 6.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mundaun_0549394780", "resource_type": "image"}}} mundaun_0549394780 .jpg image/jpeg 415.82 https://res.cloudinary.com/won-games/image/upload/v1621522999/mundaun_0549394780.jpg \N cloudinary {"public_id": "mundaun_0549394780", "resource_type": "image"} \N \N 2021-05-20 12:03:27.883-03 2021-05-20 12:03:27.883-03 188 biomutant.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_biomutant_aee1ff8d4b.jpg", "hash": "thumbnail_biomutant_aee1ff8d4b", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 22.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_biomutant_aee1ff8d4b", "resource_type": "image"}}} biomutant_aee1ff8d4b .jpg image/jpeg 1493.71 https://res.cloudinary.com/won-games/image/upload/v1621523000/biomutant_aee1ff8d4b.jpg \N cloudinary {"public_id": "biomutant_aee1ff8d4b", "resource_type": "image"} \N \N 2021-05-20 12:03:27.979-03 2021-05-20 12:03:27.979-03 153 siege-survival-gloria-victis.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_siege_survival_gloria_victis_b073b81088.jpg", "hash": "thumbnail_siege_survival_gloria_victis_b073b81088", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 10.97, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_b073b81088", "resource_type": "image"}}} siege_survival_gloria_victis_b073b81088 .jpg image/jpeg 214.39 https://res.cloudinary.com/won-games/image/upload/v1621522997/siege_survival_gloria_victis_b073b81088.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_b073b81088", "resource_type": "image"} \N \N 2021-05-20 12:03:27.293-03 2021-05-20 12:03:27.293-03 154 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_53295dea25.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_53295dea25", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 9.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_53295dea25", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_53295dea25 .jpg image/jpeg 582.66 https://res.cloudinary.com/won-games/image/upload/v1621522997/werewolf_the_apocalypse_heart_of_the_forest_53295dea25.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_53295dea25", "resource_type": "image"} \N \N 2021-05-20 12:03:27.317-03 2021-05-20 12:03:27.317-03 155 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 10.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab .jpg image/jpeg 902.35 https://res.cloudinary.com/won-games/image/upload/v1621522996/witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_baba2e2aab", "resource_type": "image"} \N \N 2021-05-20 12:03:27.352-03 2021-05-20 12:03:27.352-03 156 spiritfarer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_spiritfarer_3aaadcb4d4.jpg", "hash": "thumbnail_spiritfarer_3aaadcb4d4", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 7.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_3aaadcb4d4", "resource_type": "image"}}} spiritfarer_3aaadcb4d4 .jpg image/jpeg 373.32 https://res.cloudinary.com/won-games/image/upload/v1621522997/spiritfarer_3aaadcb4d4.jpg \N cloudinary {"public_id": "spiritfarer_3aaadcb4d4", "resource_type": "image"} \N \N 2021-05-20 12:03:27.363-03 2021-05-20 12:03:27.363-03 163 fallout-3-game-of-the-year-edition.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_fallout_3_game_of_the_year_edition_8b536c0984.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_8b536c0984", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 32.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_8b536c0984", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_8b536c0984 .jpg image/jpeg 679.01 https://res.cloudinary.com/won-games/image/upload/v1621522997/fallout_3_game_of_the_year_edition_8b536c0984.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_8b536c0984", "resource_type": "image"} \N \N 2021-05-20 12:03:27.539-03 2021-05-20 12:03:27.539-03 164 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 17.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea .jpg image/jpeg 739.10 https://res.cloudinary.com/won-games/image/upload/v1621522999/the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_869b8aadea", "resource_type": "image"} \N \N 2021-05-20 12:03:27.568-03 2021-05-20 12:03:27.568-03 169 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_a49a53940b.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_a49a53940b", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 10.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_a49a53940b", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_a49a53940b .jpg image/jpeg 637.97 https://res.cloudinary.com/won-games/image/upload/v1621523000/werewolf_the_apocalypse_heart_of_the_forest_a49a53940b.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_a49a53940b", "resource_type": "image"} \N \N 2021-05-20 12:03:27.668-03 2021-05-20 12:03:27.668-03 187 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 18.73, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c .jpg image/jpeg 558.33 https://res.cloudinary.com/won-games/image/upload/v1621522999/the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_509c9c1f0c", "resource_type": "image"} \N \N 2021-05-20 12:03:27.978-03 2021-05-20 12:03:27.978-03 157 heavens-vault.jpg \N \N 3072 1728 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_heavens_vault_14973167b0.jpg", "hash": "thumbnail_heavens_vault_14973167b0", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 6.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_heavens_vault_14973167b0", "resource_type": "image"}}} heavens_vault_14973167b0 .jpg image/jpeg 636.95 https://res.cloudinary.com/won-games/image/upload/v1621522998/heavens_vault_14973167b0.jpg \N cloudinary {"public_id": "heavens_vault_14973167b0", "resource_type": "image"} \N \N 2021-05-20 12:03:27.37-03 2021-05-20 12:03:27.37-03 161 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523005/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a .jpg image/jpeg 275.51 https://res.cloudinary.com/won-games/image/upload/v1621522996/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_9dcc07239a", "resource_type": "image"} \N \N 2021-05-20 12:03:27.531-03 2021-05-20 12:03:27.531-03 165 heavens-vault.jpg \N \N 3072 1728 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_heavens_vault_ec4cc3500b.jpg", "hash": "thumbnail_heavens_vault_ec4cc3500b", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 9.11, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_heavens_vault_ec4cc3500b", "resource_type": "image"}}} heavens_vault_ec4cc3500b .jpg image/jpeg 668.81 https://res.cloudinary.com/won-games/image/upload/v1621522998/heavens_vault_ec4cc3500b.jpg \N cloudinary {"public_id": "heavens_vault_ec4cc3500b", "resource_type": "image"} \N \N 2021-05-20 12:03:27.571-03 2021-05-20 12:03:27.571-03 170 space-haven.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_space_haven_8df6ca73d6.jpg", "hash": "thumbnail_space_haven_8df6ca73d6", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 9.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_space_haven_8df6ca73d6", "resource_type": "image"}}} space_haven_8df6ca73d6 .jpg image/jpeg 466.90 https://res.cloudinary.com/won-games/image/upload/v1621522997/space_haven_8df6ca73d6.jpg \N cloudinary {"public_id": "space_haven_8df6ca73d6", "resource_type": "image"} \N \N 2021-05-20 12:03:27.669-03 2021-05-20 12:03:27.669-03 175 siege-survival-gloria-victis.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_siege_survival_gloria_victis_471d131ba9.jpg", "hash": "thumbnail_siege_survival_gloria_victis_471d131ba9", "mime": "image/jpeg", "name": "thumbnail_siege-survival-gloria-victis.jpg", "path": null, "size": 8.37, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_siege_survival_gloria_victis_471d131ba9", "resource_type": "image"}}} siege_survival_gloria_victis_471d131ba9 .jpg image/jpeg 182.37 https://res.cloudinary.com/won-games/image/upload/v1621522997/siege_survival_gloria_victis_471d131ba9.jpg \N cloudinary {"public_id": "siege_survival_gloria_victis_471d131ba9", "resource_type": "image"} \N \N 2021-05-20 12:03:27.741-03 2021-05-20 12:03:27.741-03 176 space-haven.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_space_haven_e279e8ba5b.jpg", "hash": "thumbnail_space_haven_e279e8ba5b", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 7.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_space_haven_e279e8ba5b", "resource_type": "image"}}} space_haven_e279e8ba5b .jpg image/jpeg 650.32 https://res.cloudinary.com/won-games/image/upload/v1621522999/space_haven_e279e8ba5b.jpg \N cloudinary {"public_id": "space_haven_e279e8ba5b", "resource_type": "image"} \N \N 2021-05-20 12:03:27.789-03 2021-05-20 12:03:27.789-03 177 huntdown.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_huntdown_2e4b84834d.jpg", "hash": "thumbnail_huntdown_2e4b84834d", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 10.18, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huntdown_2e4b84834d", "resource_type": "image"}}} huntdown_2e4b84834d .jpg image/jpeg 345.84 https://res.cloudinary.com/won-games/image/upload/v1621522997/huntdown_2e4b84834d.jpg \N cloudinary {"public_id": "huntdown_2e4b84834d", "resource_type": "image"} \N \N 2021-05-20 12:03:27.809-03 2021-05-20 12:03:27.809-03 180 fallout-3-game-of-the-year-edition.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_fallout_3_game_of_the_year_edition_4968e519df.jpg", "hash": "thumbnail_fallout_3_game_of_the_year_edition_4968e519df", "mime": "image/jpeg", "name": "thumbnail_fallout-3-game-of-the-year-edition.jpg", "path": null, "size": 31.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_3_game_of_the_year_edition_4968e519df", "resource_type": "image"}}} fallout_3_game_of_the_year_edition_4968e519df .jpg image/jpeg 604.60 https://res.cloudinary.com/won-games/image/upload/v1621522999/fallout_3_game_of_the_year_edition_4968e519df.jpg \N cloudinary {"public_id": "fallout_3_game_of_the_year_edition_4968e519df", "resource_type": "image"} \N \N 2021-05-20 12:03:27.862-03 2021-05-20 12:03:27.862-03 182 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.06, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f .jpg image/jpeg 263.57 https://res.cloudinary.com/won-games/image/upload/v1621522998/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_4823c6ee5f", "resource_type": "image"} \N \N 2021-05-20 12:03:27.884-03 2021-05-20 12:03:27.884-03 162 ghost-of-a-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_ghost_of_a_tale_487807102b.jpg", "hash": "thumbnail_ghost_of_a_tale_487807102b", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 27.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_487807102b", "resource_type": "image"}}} ghost_of_a_tale_487807102b .jpg image/jpeg 2076.49 https://res.cloudinary.com/won-games/image/upload/v1621522998/ghost_of_a_tale_487807102b.jpg \N cloudinary {"public_id": "ghost_of_a_tale_487807102b", "resource_type": "image"} \N \N 2021-05-20 12:03:27.532-03 2021-05-20 12:03:27.532-03 166 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 16.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58 .jpg image/jpeg 504.04 https://res.cloudinary.com/won-games/image/upload/v1621522997/the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_0597c49a58", "resource_type": "image"} \N \N 2021-05-20 12:03:27.584-03 2021-05-20 12:03:27.584-03 167 vampire-the-masquerade-bloodlines.jpg \N \N 1600 1200 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_vampire_the_masquerade_bloodlines_dd59ec8303.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_dd59ec8303", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 8.74, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_dd59ec8303", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_dd59ec8303 .jpg image/jpeg 334.57 https://res.cloudinary.com/won-games/image/upload/v1621522999/vampire_the_masquerade_bloodlines_dd59ec8303.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_dd59ec8303", "resource_type": "image"} \N \N 2021-05-20 12:03:27.622-03 2021-05-20 12:03:27.622-03 168 vampire-the-masquerade-bloodlines.jpg \N \N 1280 1024 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_vampire_the_masquerade_bloodlines_2cd98b2c79.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2cd98b2c79", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 8.44, "width": 195, "height": 156, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2cd98b2c79", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2cd98b2c79 .jpg image/jpeg 220.51 https://res.cloudinary.com/won-games/image/upload/v1621522999/vampire_the_masquerade_bloodlines_2cd98b2c79.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2cd98b2c79", "resource_type": "image"} \N \N 2021-05-20 12:03:27.653-03 2021-05-20 12:03:27.653-03 203 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heroes_of_might_and_magic_3_complete_edition_9a844a0059.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_9a844a0059", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 12.72, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_9a844a0059", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_9a844a0059 .jpg image/jpeg 456.44 https://res.cloudinary.com/won-games/image/upload/v1621523001/heroes_of_might_and_magic_3_complete_edition_9a844a0059.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_9a844a0059", "resource_type": "image"} \N \N 2021-05-20 12:03:28.186-03 2021-05-20 12:03:28.186-03 232 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_expansion_pass_52d200cb58.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_52d200cb58", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 10.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_52d200cb58", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_52d200cb58 .jpg image/jpeg 695.20 https://res.cloudinary.com/won-games/image/upload/v1621523004/the_witcher_3_wild_hunt_expansion_pass_52d200cb58.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_52d200cb58", "resource_type": "image"} \N \N 2021-05-20 12:03:28.703-03 2021-05-20 12:03:28.703-03 235 fallout-new-vegas-ultimate-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_fallout_new_vegas_ultimate_edition_a4b849d104.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_a4b849d104", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 8.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_a4b849d104", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_a4b849d104 .jpg image/jpeg 2122.54 https://res.cloudinary.com/won-games/image/upload/v1621523004/fallout_new_vegas_ultimate_edition_a4b849d104.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_a4b849d104", "resource_type": "image"} \N \N 2021-05-20 12:03:28.752-03 2021-05-20 12:03:28.752-03 236 the-mansion.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_mansion_6e7f0661cc.jpg", "hash": "thumbnail_the_mansion_6e7f0661cc", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 7.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_mansion_6e7f0661cc", "resource_type": "image"}}} the_mansion_6e7f0661cc .jpg image/jpeg 461.10 https://res.cloudinary.com/won-games/image/upload/v1621522999/the_mansion_6e7f0661cc.jpg \N cloudinary {"public_id": "the_mansion_6e7f0661cc", "resource_type": "image"} \N \N 2021-05-20 12:03:28.808-03 2021-05-20 12:03:28.808-03 237 cyberpunk-2077.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_cyberpunk_2077_226b2a80f7.jpg", "hash": "thumbnail_cyberpunk_2077_226b2a80f7", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 10.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_226b2a80f7", "resource_type": "image"}}} cyberpunk_2077_226b2a80f7 .jpg image/jpeg 617.68 https://res.cloudinary.com/won-games/image/upload/v1621523003/cyberpunk_2077_226b2a80f7.jpg \N cloudinary {"public_id": "cyberpunk_2077_226b2a80f7", "resource_type": "image"} \N \N 2021-05-20 12:03:28.819-03 2021-05-20 12:03:28.819-03 183 werewolf-the-apocalypse-heart-of-the-forest.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_af06abdced.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_af06abdced", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest.jpg", "path": null, "size": 9.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_af06abdced", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_af06abdced .jpg image/jpeg 371.71 https://res.cloudinary.com/won-games/image/upload/v1621522997/werewolf_the_apocalypse_heart_of_the_forest_af06abdced.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_af06abdced", "resource_type": "image"} \N \N 2021-05-20 12:03:27.9-03 2021-05-20 12:03:27.9-03 184 spiritfarer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_spiritfarer_b28abddef3.jpg", "hash": "thumbnail_spiritfarer_b28abddef3", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 5.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_b28abddef3", "resource_type": "image"}}} spiritfarer_b28abddef3 .jpg image/jpeg 300.71 https://res.cloudinary.com/won-games/image/upload/v1621522999/spiritfarer_b28abddef3.jpg \N cloudinary {"public_id": "spiritfarer_b28abddef3", "resource_type": "image"} \N \N 2021-05-20 12:03:27.923-03 2021-05-20 12:03:27.923-03 185 foundation.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_foundation_41774e0431.jpg", "hash": "thumbnail_foundation_41774e0431", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 10.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_foundation_41774e0431", "resource_type": "image"}}} foundation_41774e0431 .jpg image/jpeg 478.34 https://res.cloudinary.com/won-games/image/upload/v1621523000/foundation_41774e0431.jpg \N cloudinary {"public_id": "foundation_41774e0431", "resource_type": "image"} \N \N 2021-05-20 12:03:27.936-03 2021-05-20 12:03:27.936-03 186 mundaun.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_mundaun_ec11c0afdd.jpg", "hash": "thumbnail_mundaun_ec11c0afdd", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 5.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mundaun_ec11c0afdd", "resource_type": "image"}}} mundaun_ec11c0afdd .jpg image/jpeg 374.77 https://res.cloudinary.com/won-games/image/upload/v1621522998/mundaun_ec11c0afdd.jpg \N cloudinary {"public_id": "mundaun_ec11c0afdd", "resource_type": "image"} \N \N 2021-05-20 12:03:27.971-03 2021-05-20 12:03:27.971-03 199 witcher-adventure-game.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_witcher_adventure_game_256d2eefd8.jpg", "hash": "thumbnail_witcher_adventure_game_256d2eefd8", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 8.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_256d2eefd8", "resource_type": "image"}}} witcher_adventure_game_256d2eefd8 .jpg image/jpeg 724.93 https://res.cloudinary.com/won-games/image/upload/v1621522998/witcher_adventure_game_256d2eefd8.jpg \N cloudinary {"public_id": "witcher_adventure_game_256d2eefd8", "resource_type": "image"} \N \N 2021-05-20 12:03:28.161-03 2021-05-20 12:03:28.161-03 200 cyberpunk-2077.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_cyberpunk_2077_50b8c04a05.jpg", "hash": "thumbnail_cyberpunk_2077_50b8c04a05", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 11.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_50b8c04a05", "resource_type": "image"}}} cyberpunk_2077_50b8c04a05 .jpg image/jpeg 752.40 https://res.cloudinary.com/won-games/image/upload/v1621523001/cyberpunk_2077_50b8c04a05.jpg \N cloudinary {"public_id": "cyberpunk_2077_50b8c04a05", "resource_type": "image"} \N \N 2021-05-20 12:03:28.174-03 2021-05-20 12:03:28.174-03 207 cyberpunk-2077.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_cyberpunk_2077_de4cdab87c.jpg", "hash": "thumbnail_cyberpunk_2077_de4cdab87c", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 7.04, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_de4cdab87c", "resource_type": "image"}}} cyberpunk_2077_de4cdab87c .jpg image/jpeg 450.92 https://res.cloudinary.com/won-games/image/upload/v1621523001/cyberpunk_2077_de4cdab87c.jpg \N cloudinary {"public_id": "cyberpunk_2077_de4cdab87c", "resource_type": "image"} \N \N 2021-05-20 12:03:28.219-03 2021-05-20 12:03:28.219-03 211 cyberpunk-2077.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_cyberpunk_2077_8505457e31.jpg", "hash": "thumbnail_cyberpunk_2077_8505457e31", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_8505457e31", "resource_type": "image"}}} cyberpunk_2077_8505457e31 .jpg image/jpeg 474.79 https://res.cloudinary.com/won-games/image/upload/v1621523000/cyberpunk_2077_8505457e31.jpg \N cloudinary {"public_id": "cyberpunk_2077_8505457e31", "resource_type": "image"} \N \N 2021-05-20 12:03:28.311-03 2021-05-20 12:03:28.311-03 213 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 18.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af .jpg image/jpeg 857.25 https://res.cloudinary.com/won-games/image/upload/v1621523002/the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_bd397e79af", "resource_type": "image"} \N \N 2021-05-20 12:03:28.332-03 2021-05-20 12:03:28.332-03 217 blazing-chrome.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_blazing_chrome_3649faae1c.jpg", "hash": "thumbnail_blazing_chrome_3649faae1c", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 11.98, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_3649faae1c", "resource_type": "image"}}} blazing_chrome_3649faae1c .jpg image/jpeg 857.28 https://res.cloudinary.com/won-games/image/upload/v1621523002/blazing_chrome_3649faae1c.jpg \N cloudinary {"public_id": "blazing_chrome_3649faae1c", "resource_type": "image"} \N \N 2021-05-20 12:03:28.426-03 2021-05-20 12:03:28.426-03 190 the-witcher-3-wild-hunt-game-of-the-year-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-game-of-the-year-edition.jpg", "path": null, "size": 17.57, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0", "resource_type": "image"}}} the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0 .jpg image/jpeg 618.68 https://res.cloudinary.com/won-games/image/upload/v1621523000/the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_game_of_the_year_edition_42430f28a0", "resource_type": "image"} \N \N 2021-05-20 12:03:28.034-03 2021-05-20 12:03:28.034-03 191 spiritfarer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_spiritfarer_6cdd36b274.jpg", "hash": "thumbnail_spiritfarer_6cdd36b274", "mime": "image/jpeg", "name": "thumbnail_spiritfarer.jpg", "path": null, "size": 12.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_6cdd36b274", "resource_type": "image"}}} spiritfarer_6cdd36b274 .jpg image/jpeg 628.69 https://res.cloudinary.com/won-games/image/upload/v1621523000/spiritfarer_6cdd36b274.jpg \N cloudinary {"public_id": "spiritfarer_6cdd36b274", "resource_type": "image"} \N \N 2021-05-20 12:03:28.05-03 2021-05-20 12:03:28.05-03 192 divinity-original-sin-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_divinity_original_sin_2_959e4a3112.jpg", "hash": "thumbnail_divinity_original_sin_2_959e4a3112", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 26.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_959e4a3112", "resource_type": "image"}}} divinity_original_sin_2_959e4a3112 .jpg image/jpeg 761.71 https://res.cloudinary.com/won-games/image/upload/v1621523000/divinity_original_sin_2_959e4a3112.jpg \N cloudinary {"public_id": "divinity_original_sin_2_959e4a3112", "resource_type": "image"} \N \N 2021-05-20 12:03:28.063-03 2021-05-20 12:03:28.063-03 193 thronebreaker-the-witcher-tales.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_thronebreaker_the_witcher_tales_4768c2d266.jpg", "hash": "thumbnail_thronebreaker_the_witcher_tales_4768c2d266", "mime": "image/jpeg", "name": "thumbnail_thronebreaker-the-witcher-tales.jpg", "path": null, "size": 10.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_thronebreaker_the_witcher_tales_4768c2d266", "resource_type": "image"}}} thronebreaker_the_witcher_tales_4768c2d266 .jpg image/jpeg 487.19 https://res.cloudinary.com/won-games/image/upload/v1621522997/thronebreaker_the_witcher_tales_4768c2d266.jpg \N cloudinary {"public_id": "thronebreaker_the_witcher_tales_4768c2d266", "resource_type": "image"} \N \N 2021-05-20 12:03:28.079-03 2021-05-20 12:03:28.079-03 194 biomutant.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_biomutant_9a0462e45f.jpg", "hash": "thumbnail_biomutant_9a0462e45f", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 13.61, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_biomutant_9a0462e45f", "resource_type": "image"}}} biomutant_9a0462e45f .jpg image/jpeg 415.80 https://res.cloudinary.com/won-games/image/upload/v1621523001/biomutant_9a0462e45f.jpg \N cloudinary {"public_id": "biomutant_9a0462e45f", "resource_type": "image"} \N \N 2021-05-20 12:03:28.089-03 2021-05-20 12:03:28.089-03 197 space-haven.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_space_haven_de93f409fd.jpg", "hash": "thumbnail_space_haven_de93f409fd", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 9.77, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_space_haven_de93f409fd", "resource_type": "image"}}} space_haven_de93f409fd .jpg image/jpeg 774.66 https://res.cloudinary.com/won-games/image/upload/v1621522999/space_haven_de93f409fd.jpg \N cloudinary {"public_id": "space_haven_de93f409fd", "resource_type": "image"} \N \N 2021-05-20 12:03:28.146-03 2021-05-20 12:03:28.146-03 201 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_expansion_pass_dea192a0b0.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_dea192a0b0", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 10.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_dea192a0b0", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_dea192a0b0 .jpg image/jpeg 655.07 https://res.cloudinary.com/won-games/image/upload/v1621523001/the_witcher_3_wild_hunt_expansion_pass_dea192a0b0.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_dea192a0b0", "resource_type": "image"} \N \N 2021-05-20 12:03:28.174-03 2021-05-20 12:03:28.174-03 195 blazing-chrome.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_blazing_chrome_d4e783a6d5.jpg", "hash": "thumbnail_blazing_chrome_d4e783a6d5", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 11.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_d4e783a6d5", "resource_type": "image"}}} blazing_chrome_d4e783a6d5 .jpg image/jpeg 636.93 https://res.cloudinary.com/won-games/image/upload/v1621523001/blazing_chrome_d4e783a6d5.jpg \N cloudinary {"public_id": "blazing_chrome_d4e783a6d5", "resource_type": "image"} \N \N 2021-05-20 12:03:28.097-03 2021-05-20 12:03:28.097-03 196 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_the_witcher_3_wild_hunt_expansion_pass_83bf0263b2.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_83bf0263b2", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 10.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_83bf0263b2", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_83bf0263b2 .jpg image/jpeg 825.24 https://res.cloudinary.com/won-games/image/upload/v1621523000/the_witcher_3_wild_hunt_expansion_pass_83bf0263b2.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_83bf0263b2", "resource_type": "image"} \N \N 2021-05-20 12:03:28.116-03 2021-05-20 12:03:28.116-03 198 cyberpunk-2077.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_cyberpunk_2077_7dea706b63.jpg", "hash": "thumbnail_cyberpunk_2077_7dea706b63", "mime": "image/jpeg", "name": "thumbnail_cyberpunk-2077.jpg", "path": null, "size": 9.51, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cyberpunk_2077_7dea706b63", "resource_type": "image"}}} cyberpunk_2077_7dea706b63 .jpg image/jpeg 825.63 https://res.cloudinary.com/won-games/image/upload/v1621522999/cyberpunk_2077_7dea706b63.jpg \N cloudinary {"public_id": "cyberpunk_2077_7dea706b63", "resource_type": "image"} \N \N 2021-05-20 12:03:28.146-03 2021-05-20 12:03:28.146-03 202 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heroes_of_might_and_magic_3_complete_edition_fb90527891.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_fb90527891", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 15.76, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_fb90527891", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_fb90527891 .jpg image/jpeg 472.83 https://res.cloudinary.com/won-games/image/upload/v1621523000/heroes_of_might_and_magic_3_complete_edition_fb90527891.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_fb90527891", "resource_type": "image"} \N \N 2021-05-20 12:03:28.176-03 2021-05-20 12:03:28.176-03 208 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 9.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0 .jpg image/jpeg 527.96 https://res.cloudinary.com/won-games/image/upload/v1621523000/the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_d5ea542ca0", "resource_type": "image"} \N \N 2021-05-20 12:03:28.22-03 2021-05-20 12:03:28.22-03 209 disco-elysium.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_disco_elysium_f0ea7eec00.jpg", "hash": "thumbnail_disco_elysium_f0ea7eec00", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 3.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_disco_elysium_f0ea7eec00", "resource_type": "image"}}} disco_elysium_f0ea7eec00 .jpg image/jpeg 106.66 https://res.cloudinary.com/won-games/image/upload/v1621523000/disco_elysium_f0ea7eec00.jpg \N cloudinary {"public_id": "disco_elysium_f0ea7eec00", "resource_type": "image"} \N \N 2021-05-20 12:03:28.288-03 2021-05-20 12:03:28.288-03 210 huntdown.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_huntdown_2104518025.jpg", "hash": "thumbnail_huntdown_2104518025", "mime": "image/jpeg", "name": "thumbnail_huntdown.jpg", "path": null, "size": 12.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huntdown_2104518025", "resource_type": "image"}}} huntdown_2104518025 .jpg image/jpeg 464.39 https://res.cloudinary.com/won-games/image/upload/v1621523000/huntdown_2104518025.jpg \N cloudinary {"public_id": "huntdown_2104518025", "resource_type": "image"} \N \N 2021-05-20 12:03:28.305-03 2021-05-20 12:03:28.305-03 212 bloodrayne-complete-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_bloodrayne_complete_bundle_af63b78a6d.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_af63b78a6d", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 8.71, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_af63b78a6d", "resource_type": "image"}}} bloodrayne_complete_bundle_af63b78a6d .jpg image/jpeg 213.88 https://res.cloudinary.com/won-games/image/upload/v1621523003/bloodrayne_complete_bundle_af63b78a6d.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_af63b78a6d", "resource_type": "image"} \N \N 2021-05-20 12:03:28.331-03 2021-05-20 12:03:28.331-03 215 heavens-vault.jpg \N \N 3072 1728 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heavens_vault_1e83074941.jpg", "hash": "thumbnail_heavens_vault_1e83074941", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 5.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_heavens_vault_1e83074941", "resource_type": "image"}}} heavens_vault_1e83074941 .jpg image/jpeg 217.03 https://res.cloudinary.com/won-games/image/upload/v1621523001/heavens_vault_1e83074941.jpg \N cloudinary {"public_id": "heavens_vault_1e83074941", "resource_type": "image"} \N \N 2021-05-20 12:03:28.369-03 2021-05-20 12:03:28.369-03 204 the-mansion.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_mansion_4a2a7bd3df.jpg", "hash": "thumbnail_the_mansion_4a2a7bd3df", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_mansion_4a2a7bd3df", "resource_type": "image"}}} the_mansion_4a2a7bd3df .jpg image/jpeg 576.71 https://res.cloudinary.com/won-games/image/upload/v1621523001/the_mansion_4a2a7bd3df.jpg \N cloudinary {"public_id": "the_mansion_4a2a7bd3df", "resource_type": "image"} \N \N 2021-05-20 12:03:28.188-03 2021-05-20 12:03:28.188-03 205 space-haven.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_space_haven_24f382ec8b.jpg", "hash": "thumbnail_space_haven_24f382ec8b", "mime": "image/jpeg", "name": "thumbnail_space-haven.jpg", "path": null, "size": 10.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_space_haven_24f382ec8b", "resource_type": "image"}}} space_haven_24f382ec8b .jpg image/jpeg 736.56 https://res.cloudinary.com/won-games/image/upload/v1621523002/space_haven_24f382ec8b.jpg \N cloudinary {"public_id": "space_haven_24f382ec8b", "resource_type": "image"} \N \N 2021-05-20 12:03:28.198-03 2021-05-20 12:03:28.198-03 206 vampire-the-masquerade-bloodlines.jpg \N \N 1600 1200 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_vampire_the_masquerade_bloodlines_740374f553.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_740374f553", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines.jpg", "path": null, "size": 7.94, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_740374f553", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_740374f553 .jpg image/jpeg 337.47 https://res.cloudinary.com/won-games/image/upload/v1621522998/vampire_the_masquerade_bloodlines_740374f553.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_740374f553", "resource_type": "image"} \N \N 2021-05-20 12:03:28.21-03 2021-05-20 12:03:28.21-03 216 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 9.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901 .jpg image/jpeg 621.03 https://res.cloudinary.com/won-games/image/upload/v1621523002/the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_66d7f4d901", "resource_type": "image"} \N \N 2021-05-20 12:03:28.382-03 2021-05-20 12:03:28.382-03 218 baldurs-gate-iii.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_baldurs_gate_iii_b40b2fe875.jpg", "hash": "thumbnail_baldurs_gate_iii_b40b2fe875", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 38.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_b40b2fe875", "resource_type": "image"}}} baldurs_gate_iii_b40b2fe875 .jpg image/jpeg 1257.51 https://res.cloudinary.com/won-games/image/upload/v1621523003/baldurs_gate_iii_b40b2fe875.jpg \N cloudinary {"public_id": "baldurs_gate_iii_b40b2fe875", "resource_type": "image"} \N \N 2021-05-20 12:03:28.426-03 2021-05-20 12:03:28.426-03 220 ghost-of-a-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_ghost_of_a_tale_44eb542857.jpg", "hash": "thumbnail_ghost_of_a_tale_44eb542857", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_44eb542857", "resource_type": "image"}}} ghost_of_a_tale_44eb542857 .jpg image/jpeg 2764.26 https://res.cloudinary.com/won-games/image/upload/v1621523005/ghost_of_a_tale_44eb542857.jpg \N cloudinary {"public_id": "ghost_of_a_tale_44eb542857", "resource_type": "image"} \N \N 2021-05-20 12:03:28.441-03 2021-05-20 12:03:28.441-03 221 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_heroes_of_might_and_magic_3_complete_edition_ab8b98d970.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_ab8b98d970", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 9.33, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_ab8b98d970", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_ab8b98d970 .jpg image/jpeg 383.17 https://res.cloudinary.com/won-games/image/upload/v1621522999/heroes_of_might_and_magic_3_complete_edition_ab8b98d970.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_ab8b98d970", "resource_type": "image"} \N \N 2021-05-20 12:03:28.47-03 2021-05-20 12:03:28.47-03 222 the-mansion.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_mansion_195dbda47d.jpg", "hash": "thumbnail_the_mansion_195dbda47d", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 7.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_mansion_195dbda47d", "resource_type": "image"}}} the_mansion_195dbda47d .jpg image/jpeg 500.49 https://res.cloudinary.com/won-games/image/upload/v1621523001/the_mansion_195dbda47d.jpg \N cloudinary {"public_id": "the_mansion_195dbda47d", "resource_type": "image"} \N \N 2021-05-20 12:03:28.503-03 2021-05-20 12:03:28.503-03 224 kenshi.jpg \N \N 1904 1042 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_kenshi_f7178cbb47.jpg", "hash": "thumbnail_kenshi_f7178cbb47", "mime": "image/jpeg", "name": "thumbnail_kenshi.jpg", "path": null, "size": 9.34, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_kenshi_f7178cbb47", "resource_type": "image"}}} kenshi_f7178cbb47 .jpg image/jpeg 662.02 https://res.cloudinary.com/won-games/image/upload/v1621523001/kenshi_f7178cbb47.jpg \N cloudinary {"public_id": "kenshi_f7178cbb47", "resource_type": "image"} \N \N 2021-05-20 12:03:28.518-03 2021-05-20 12:03:28.518-03 225 witcher-adventure-game.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_adventure_game_e9cd103ebc.jpg", "hash": "thumbnail_witcher_adventure_game_e9cd103ebc", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 10.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_e9cd103ebc", "resource_type": "image"}}} witcher_adventure_game_e9cd103ebc .jpg image/jpeg 1277.95 https://res.cloudinary.com/won-games/image/upload/v1621523002/witcher_adventure_game_e9cd103ebc.jpg \N cloudinary {"public_id": "witcher_adventure_game_e9cd103ebc", "resource_type": "image"} \N \N 2021-05-20 12:03:28.568-03 2021-05-20 12:03:28.568-03 214 bloodrayne-complete-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_bloodrayne_complete_bundle_5e4717523d.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_5e4717523d", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 9.14, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_5e4717523d", "resource_type": "image"}}} bloodrayne_complete_bundle_5e4717523d .jpg image/jpeg 207.36 https://res.cloudinary.com/won-games/image/upload/v1621523002/bloodrayne_complete_bundle_5e4717523d.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_5e4717523d", "resource_type": "image"} \N \N 2021-05-20 12:03:28.365-03 2021-05-20 12:03:28.365-03 219 foundation.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_foundation_9929154af6.jpg", "hash": "thumbnail_foundation_9929154af6", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 11.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_foundation_9929154af6", "resource_type": "image"}}} foundation_9929154af6 .jpg image/jpeg 447.44 https://res.cloudinary.com/won-games/image/upload/v1621523000/foundation_9929154af6.jpg \N cloudinary {"public_id": "foundation_9929154af6", "resource_type": "image"} \N \N 2021-05-20 12:03:28.435-03 2021-05-20 12:03:28.435-03 223 heavens-vault.jpg \N \N 3072 1728 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heavens_vault_bf1c27ac36.jpg", "hash": "thumbnail_heavens_vault_bf1c27ac36", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 7.77, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_heavens_vault_bf1c27ac36", "resource_type": "image"}}} heavens_vault_bf1c27ac36 .jpg image/jpeg 467.93 https://res.cloudinary.com/won-games/image/upload/v1621523003/heavens_vault_bf1c27ac36.jpg \N cloudinary {"public_id": "heavens_vault_bf1c27ac36", "resource_type": "image"} \N \N 2021-05-20 12:03:28.509-03 2021-05-20 12:03:28.509-03 227 fates-of-ort.jpg \N \N 1600 900 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_fates_of_ort_0830d075da.jpg", "hash": "thumbnail_fates_of_ort_0830d075da", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 6.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_0830d075da", "resource_type": "image"}}} fates_of_ort_0830d075da .jpg image/jpeg 329.29 https://res.cloudinary.com/won-games/image/upload/v1621523003/fates_of_ort_0830d075da.jpg \N cloudinary {"public_id": "fates_of_ort_0830d075da", "resource_type": "image"} \N \N 2021-05-20 12:03:28.649-03 2021-05-20 12:03:28.649-03 230 foundation.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_foundation_7ff7c90e71.jpg", "hash": "thumbnail_foundation_7ff7c90e71", "mime": "image/jpeg", "name": "thumbnail_foundation.jpg", "path": null, "size": 6.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_foundation_7ff7c90e71", "resource_type": "image"}}} foundation_7ff7c90e71 .jpg image/jpeg 272.02 https://res.cloudinary.com/won-games/image/upload/v1621523000/foundation_7ff7c90e71.jpg \N cloudinary {"public_id": "foundation_7ff7c90e71", "resource_type": "image"} \N \N 2021-05-20 12:03:28.693-03 2021-05-20 12:03:28.693-03 226 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heroes_of_might_and_magic_3_complete_edition_8b486fe98e.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_8b486fe98e", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 8.11, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_8b486fe98e", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_8b486fe98e .jpg image/jpeg 366.83 https://res.cloudinary.com/won-games/image/upload/v1621522999/heroes_of_might_and_magic_3_complete_edition_8b486fe98e.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_8b486fe98e", "resource_type": "image"} \N \N 2021-05-20 12:03:28.606-03 2021-05-20 12:03:28.606-03 228 vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68.jpg", "hash": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-shadows-of-new-york-deluxe-edition.jpg", "path": null, "size": 7.41, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68", "resource_type": "image"}}} vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68 .jpg image/jpeg 359.26 https://res.cloudinary.com/won-games/image/upload/v1621523000/vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68.jpg \N cloudinary {"public_id": "vampire_the_masquerade_shadows_of_new_york_deluxe_edition_079ea9ac68", "resource_type": "image"} \N \N 2021-05-20 12:03:28.649-03 2021-05-20 12:03:28.649-03 229 dorfromantik.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_dorfromantik_ac8c6718bc.jpg", "hash": "thumbnail_dorfromantik_ac8c6718bc", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 11.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dorfromantik_ac8c6718bc", "resource_type": "image"}}} dorfromantik_ac8c6718bc .jpg image/jpeg 801.23 https://res.cloudinary.com/won-games/image/upload/v1621523005/dorfromantik_ac8c6718bc.jpg \N cloudinary {"public_id": "dorfromantik_ac8c6718bc", "resource_type": "image"} \N \N 2021-05-20 12:03:28.681-03 2021-05-20 12:03:28.681-03 231 lost-ruins.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_lost_ruins_97307d6f05.jpg", "hash": "thumbnail_lost_ruins_97307d6f05", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 11.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_lost_ruins_97307d6f05", "resource_type": "image"}}} lost_ruins_97307d6f05 .jpg image/jpeg 1995.86 https://res.cloudinary.com/won-games/image/upload/v1621523005/lost_ruins_97307d6f05.jpg \N cloudinary {"public_id": "lost_ruins_97307d6f05", "resource_type": "image"} \N \N 2021-05-20 12:03:28.694-03 2021-05-20 12:03:28.694-03 233 heroes-of-might-and-magic-3-complete-edition.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heroes_of_might_and_magic_3_complete_edition_163d73dabd.jpg", "hash": "thumbnail_heroes_of_might_and_magic_3_complete_edition_163d73dabd", "mime": "image/jpeg", "name": "thumbnail_heroes-of-might-and-magic-3-complete-edition.jpg", "path": null, "size": 11.62, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_heroes_of_might_and_magic_3_complete_edition_163d73dabd", "resource_type": "image"}}} heroes_of_might_and_magic_3_complete_edition_163d73dabd .jpg image/jpeg 413.79 https://res.cloudinary.com/won-games/image/upload/v1621523001/heroes_of_might_and_magic_3_complete_edition_163d73dabd.jpg \N cloudinary {"public_id": "heroes_of_might_and_magic_3_complete_edition_163d73dabd", "resource_type": "image"} \N \N 2021-05-20 12:03:28.705-03 2021-05-20 12:03:28.705-03 243 fates-of-ort.jpg \N \N 1600 900 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_fates_of_ort_885480ee31.jpg", "hash": "thumbnail_fates_of_ort_885480ee31", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 10.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_885480ee31", "resource_type": "image"}}} fates_of_ort_885480ee31 .jpg image/jpeg 575.93 https://res.cloudinary.com/won-games/image/upload/v1621523004/fates_of_ort_885480ee31.jpg \N cloudinary {"public_id": "fates_of_ort_885480ee31", "resource_type": "image"} \N \N 2021-05-20 12:03:28.925-03 2021-05-20 12:03:28.925-03 244 biomutant.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_biomutant_82a3fbb99f.jpg", "hash": "thumbnail_biomutant_82a3fbb99f", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 20.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_biomutant_82a3fbb99f", "resource_type": "image"}}} biomutant_82a3fbb99f .jpg image/jpeg 1416.22 https://res.cloudinary.com/won-games/image/upload/v1621523005/biomutant_82a3fbb99f.jpg \N cloudinary {"public_id": "biomutant_82a3fbb99f", "resource_type": "image"} \N \N 2021-05-20 12:03:29.016-03 2021-05-20 12:03:29.016-03 249 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 10.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215 .jpg image/jpeg 1146.04 https://res.cloudinary.com/won-games/image/upload/v1621523005/witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_3301fab215", "resource_type": "image"} \N \N 2021-05-20 12:03:29.131-03 2021-05-20 12:03:29.131-03 250 fates-of-ort.jpg \N \N 1600 900 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_fates_of_ort_86eac7b691.jpg", "hash": "thumbnail_fates_of_ort_86eac7b691", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 7.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_86eac7b691", "resource_type": "image"}}} fates_of_ort_86eac7b691 .jpg image/jpeg 695.17 https://res.cloudinary.com/won-games/image/upload/v1621523003/fates_of_ort_86eac7b691.jpg \N cloudinary {"public_id": "fates_of_ort_86eac7b691", "resource_type": "image"} \N \N 2021-05-20 12:03:29.161-03 2021-05-20 12:03:29.161-03 251 huniepop-2-double-date.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_huniepop_2_double_date_66ce625c5c.jpg", "hash": "thumbnail_huniepop_2_double_date_66ce625c5c", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 13.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_66ce625c5c", "resource_type": "image"}}} huniepop_2_double_date_66ce625c5c .jpg image/jpeg 1598.49 https://res.cloudinary.com/won-games/image/upload/v1621523006/huniepop_2_double_date_66ce625c5c.jpg \N cloudinary {"public_id": "huniepop_2_double_date_66ce625c5c", "resource_type": "image"} \N \N 2021-05-20 12:03:29.176-03 2021-05-20 12:03:29.176-03 252 biomutant.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_biomutant_4c01533480.jpg", "hash": "thumbnail_biomutant_4c01533480", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 21.69, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_biomutant_4c01533480", "resource_type": "image"}}} biomutant_4c01533480 .jpg image/jpeg 1519.22 https://res.cloudinary.com/won-games/image/upload/v1621523002/biomutant_4c01533480.jpg \N cloudinary {"public_id": "biomutant_4c01533480", "resource_type": "image"} \N \N 2021-05-20 12:03:29.219-03 2021-05-20 12:03:29.219-03 256 blazing-chrome.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_blazing_chrome_c23a67aefc.jpg", "hash": "thumbnail_blazing_chrome_c23a67aefc", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 11.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_c23a67aefc", "resource_type": "image"}}} blazing_chrome_c23a67aefc .jpg image/jpeg 768.78 https://res.cloudinary.com/won-games/image/upload/v1621523003/blazing_chrome_c23a67aefc.jpg \N cloudinary {"public_id": "blazing_chrome_c23a67aefc", "resource_type": "image"} \N \N 2021-05-20 12:03:29.297-03 2021-05-20 12:03:29.297-03 270 witcher-adventure-game.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_witcher_adventure_game_eb6dfa34a9.jpg", "hash": "thumbnail_witcher_adventure_game_eb6dfa34a9", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 11.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_eb6dfa34a9", "resource_type": "image"}}} witcher_adventure_game_eb6dfa34a9 .jpg image/jpeg 1535.14 https://res.cloudinary.com/won-games/image/upload/v1621523006/witcher_adventure_game_eb6dfa34a9.jpg \N cloudinary {"public_id": "witcher_adventure_game_eb6dfa34a9", "resource_type": "image"} \N \N 2021-05-20 12:03:30.258-03 2021-05-20 12:03:30.258-03 343 tyrian-2000.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523087/thumbnail_tyrian_2000_de4db76536.jpg", "hash": "thumbnail_tyrian_2000_de4db76536", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 9.36, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_de4db76536", "resource_type": "image"}}} tyrian_2000_de4db76536 .jpg image/jpeg 78.51 https://res.cloudinary.com/won-games/image/upload/v1621523078/tyrian_2000_de4db76536.jpg \N cloudinary {"public_id": "tyrian_2000_de4db76536", "resource_type": "image"} \N \N 2021-05-20 12:04:48.513-03 2021-05-20 12:04:48.513-03 234 heavens-vault.jpg \N \N 3072 1728 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_heavens_vault_8adf521c20.jpg", "hash": "thumbnail_heavens_vault_8adf521c20", "mime": "image/jpeg", "name": "thumbnail_heavens-vault.jpg", "path": null, "size": 6.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_heavens_vault_8adf521c20", "resource_type": "image"}}} heavens_vault_8adf521c20 .jpg image/jpeg 378.14 https://res.cloudinary.com/won-games/image/upload/v1621523002/heavens_vault_8adf521c20.jpg \N cloudinary {"public_id": "heavens_vault_8adf521c20", "resource_type": "image"} \N \N 2021-05-20 12:03:28.705-03 2021-05-20 12:03:28.705-03 241 fates-of-ort.jpg \N \N 1600 900 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_fates_of_ort_9fe58b9424.jpg", "hash": "thumbnail_fates_of_ort_9fe58b9424", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 8.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_9fe58b9424", "resource_type": "image"}}} fates_of_ort_9fe58b9424 .jpg image/jpeg 476.69 https://res.cloudinary.com/won-games/image/upload/v1621523003/fates_of_ort_9fe58b9424.jpg \N cloudinary {"public_id": "fates_of_ort_9fe58b9424", "resource_type": "image"} \N \N 2021-05-20 12:03:28.911-03 2021-05-20 12:03:28.911-03 245 mundaun.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_mundaun_1018d91265.jpg", "hash": "thumbnail_mundaun_1018d91265", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 5.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mundaun_1018d91265", "resource_type": "image"}}} mundaun_1018d91265 .jpg image/jpeg 279.61 https://res.cloudinary.com/won-games/image/upload/v1621523001/mundaun_1018d91265.jpg \N cloudinary {"public_id": "mundaun_1018d91265", "resource_type": "image"} \N \N 2021-05-20 12:03:29.027-03 2021-05-20 12:03:29.027-03 246 the-mansion.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_mansion_61a0e1b837.jpg", "hash": "thumbnail_the_mansion_61a0e1b837", "mime": "image/jpeg", "name": "thumbnail_the-mansion.jpg", "path": null, "size": 6.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_mansion_61a0e1b837", "resource_type": "image"}}} the_mansion_61a0e1b837 .jpg image/jpeg 439.61 https://res.cloudinary.com/won-games/image/upload/v1621523003/the_mansion_61a0e1b837.jpg \N cloudinary {"public_id": "the_mansion_61a0e1b837", "resource_type": "image"} \N \N 2021-05-20 12:03:29.039-03 2021-05-20 12:03:29.039-03 247 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 12.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d .jpg image/jpeg 1104.18 https://res.cloudinary.com/won-games/image/upload/v1621523002/witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_e88892e19d", "resource_type": "image"} \N \N 2021-05-20 12:03:29.102-03 2021-05-20 12:03:29.102-03 248 divinity-original-sin-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_divinity_original_sin_2_0dcff60599.jpg", "hash": "thumbnail_divinity_original_sin_2_0dcff60599", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 19.58, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_0dcff60599", "resource_type": "image"}}} divinity_original_sin_2_0dcff60599 .jpg image/jpeg 1058.52 https://res.cloudinary.com/won-games/image/upload/v1621523006/divinity_original_sin_2_0dcff60599.jpg \N cloudinary {"public_id": "divinity_original_sin_2_0dcff60599", "resource_type": "image"} \N \N 2021-05-20 12:03:29.124-03 2021-05-20 12:03:29.124-03 253 baldurs-gate-iii.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_baldurs_gate_iii_2988e2d665.jpg", "hash": "thumbnail_baldurs_gate_iii_2988e2d665", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 24.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_2988e2d665", "resource_type": "image"}}} baldurs_gate_iii_2988e2d665 .jpg image/jpeg 816.76 https://res.cloudinary.com/won-games/image/upload/v1621523000/baldurs_gate_iii_2988e2d665.jpg \N cloudinary {"public_id": "baldurs_gate_iii_2988e2d665", "resource_type": "image"} \N \N 2021-05-20 12:03:29.22-03 2021-05-20 12:03:29.22-03 254 divinity-original-sin-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_divinity_original_sin_2_1989a69e57.jpg", "hash": "thumbnail_divinity_original_sin_2_1989a69e57", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 20.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_1989a69e57", "resource_type": "image"}}} divinity_original_sin_2_1989a69e57 .jpg image/jpeg 1055.14 https://res.cloudinary.com/won-games/image/upload/v1621523006/divinity_original_sin_2_1989a69e57.jpg \N cloudinary {"public_id": "divinity_original_sin_2_1989a69e57", "resource_type": "image"} \N \N 2021-05-20 12:03:29.252-03 2021-05-20 12:03:29.252-03 255 bloodrayne-complete-bundle.jpg \N \N 1000 562 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_bloodrayne_complete_bundle_7543c23977.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_7543c23977", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 39.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_7543c23977", "resource_type": "image"}}} bloodrayne_complete_bundle_7543c23977 .jpg image/jpeg 484.19 https://res.cloudinary.com/won-games/image/upload/v1621523005/bloodrayne_complete_bundle_7543c23977.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_7543c23977", "resource_type": "image"} \N \N 2021-05-20 12:03:29.288-03 2021-05-20 12:03:29.288-03 257 dorfromantik.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_dorfromantik_b7c0abbda2.jpg", "hash": "thumbnail_dorfromantik_b7c0abbda2", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 5.71, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dorfromantik_b7c0abbda2", "resource_type": "image"}}} dorfromantik_b7c0abbda2 .jpg image/jpeg 361.11 https://res.cloudinary.com/won-games/image/upload/v1621522999/dorfromantik_b7c0abbda2.jpg \N cloudinary {"public_id": "dorfromantik_b7c0abbda2", "resource_type": "image"} \N \N 2021-05-20 12:03:29.301-03 2021-05-20 12:03:29.301-03 238 huniepop-2-double-date.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_huniepop_2_double_date_939c412336.jpg", "hash": "thumbnail_huniepop_2_double_date_939c412336", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 9.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_939c412336", "resource_type": "image"}}} huniepop_2_double_date_939c412336 .jpg image/jpeg 1302.72 https://res.cloudinary.com/won-games/image/upload/v1621523003/huniepop_2_double_date_939c412336.jpg \N cloudinary {"public_id": "huniepop_2_double_date_939c412336", "resource_type": "image"} \N \N 2021-05-20 12:03:28.85-03 2021-05-20 12:03:28.85-03 239 katana-zero.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_katana_zero_1db5100fa1.jpg", "hash": "thumbnail_katana_zero_1db5100fa1", "mime": "image/jpeg", "name": "thumbnail_katana-zero.jpg", "path": null, "size": 5.91, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_katana_zero_1db5100fa1", "resource_type": "image"}}} katana_zero_1db5100fa1 .jpg image/jpeg 243.02 https://res.cloudinary.com/won-games/image/upload/v1621523003/katana_zero_1db5100fa1.jpg \N cloudinary {"public_id": "katana_zero_1db5100fa1", "resource_type": "image"} \N \N 2021-05-20 12:03:28.871-03 2021-05-20 12:03:28.871-03 240 bloodrayne-complete-bundle.jpg \N \N 7680 4320 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_bloodrayne_complete_bundle_21089fe7cb.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_21089fe7cb", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 7.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_21089fe7cb", "resource_type": "image"}}} bloodrayne_complete_bundle_21089fe7cb .jpg image/jpeg 1585.95 https://res.cloudinary.com/won-games/image/upload/v1621523004/bloodrayne_complete_bundle_21089fe7cb.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_21089fe7cb", "resource_type": "image"} \N \N 2021-05-20 12:03:28.897-03 2021-05-20 12:03:28.897-03 242 witcher-adventure-game.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_adventure_game_4256261d5b.jpg", "hash": "thumbnail_witcher_adventure_game_4256261d5b", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 7.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_4256261d5b", "resource_type": "image"}}} witcher_adventure_game_4256261d5b .jpg image/jpeg 944.73 https://res.cloudinary.com/won-games/image/upload/v1621523004/witcher_adventure_game_4256261d5b.jpg \N cloudinary {"public_id": "witcher_adventure_game_4256261d5b", "resource_type": "image"} \N \N 2021-05-20 12:03:28.911-03 2021-05-20 12:03:28.911-03 258 disco-elysium.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_disco_elysium_68a51452ea.jpg", "hash": "thumbnail_disco_elysium_68a51452ea", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 9.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_disco_elysium_68a51452ea", "resource_type": "image"}}} disco_elysium_68a51452ea .jpg image/jpeg 441.09 https://res.cloudinary.com/won-games/image/upload/v1621523003/disco_elysium_68a51452ea.jpg \N cloudinary {"public_id": "disco_elysium_68a51452ea", "resource_type": "image"} \N \N 2021-05-20 12:03:29.357-03 2021-05-20 12:03:29.357-03 259 blazing-chrome.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_blazing_chrome_8df0f9bd30.jpg", "hash": "thumbnail_blazing_chrome_8df0f9bd30", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 11.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_8df0f9bd30", "resource_type": "image"}}} blazing_chrome_8df0f9bd30 .jpg image/jpeg 762.06 https://res.cloudinary.com/won-games/image/upload/v1621523007/blazing_chrome_8df0f9bd30.jpg \N cloudinary {"public_id": "blazing_chrome_8df0f9bd30", "resource_type": "image"} \N \N 2021-05-20 12:03:29.404-03 2021-05-20 12:03:29.404-03 260 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_expansion_pass_e36671da25.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_e36671da25", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 12.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_e36671da25", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_e36671da25 .jpg image/jpeg 798.64 https://res.cloudinary.com/won-games/image/upload/v1621523002/the_witcher_3_wild_hunt_expansion_pass_e36671da25.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_e36671da25", "resource_type": "image"} \N \N 2021-05-20 12:03:29.437-03 2021-05-20 12:03:29.437-03 261 the-witcher-3-wild-hunt-expansion-pass.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_the_witcher_3_wild_hunt_expansion_pass_62ce87ab45.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_62ce87ab45", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-expansion-pass.jpg", "path": null, "size": 10.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_expansion_pass_62ce87ab45", "resource_type": "image"}}} the_witcher_3_wild_hunt_expansion_pass_62ce87ab45 .jpg image/jpeg 636.53 https://res.cloudinary.com/won-games/image/upload/v1621523002/the_witcher_3_wild_hunt_expansion_pass_62ce87ab45.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_expansion_pass_62ce87ab45", "resource_type": "image"} \N \N 2021-05-20 12:03:29.462-03 2021-05-20 12:03:29.462-03 262 the-witcher-3-wild-hunt-hearts-of-stone.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-hearts-of-stone.jpg", "path": null, "size": 20.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792", "resource_type": "image"}}} the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792 .jpg image/jpeg 918.61 https://res.cloudinary.com/won-games/image/upload/v1621523002/the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_hearts_of_stone_821dd0e792", "resource_type": "image"} \N \N 2021-05-20 12:03:29.503-03 2021-05-20 12:03:29.503-03 263 witcher-adventure-game.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_adventure_game_c3d700ea8a.jpg", "hash": "thumbnail_witcher_adventure_game_c3d700ea8a", "mime": "image/jpeg", "name": "thumbnail_witcher-adventure-game.jpg", "path": null, "size": 9.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_adventure_game_c3d700ea8a", "resource_type": "image"}}} witcher_adventure_game_c3d700ea8a .jpg image/jpeg 1018.51 https://res.cloudinary.com/won-games/image/upload/v1621523004/witcher_adventure_game_c3d700ea8a.jpg \N cloudinary {"public_id": "witcher_adventure_game_c3d700ea8a", "resource_type": "image"} \N \N 2021-05-20 12:03:29.52-03 2021-05-20 12:03:29.52-03 264 lost-ruins.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_lost_ruins_2a6b4c5f00.jpg", "hash": "thumbnail_lost_ruins_2a6b4c5f00", "mime": "image/jpeg", "name": "thumbnail_lost-ruins.jpg", "path": null, "size": 8.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_lost_ruins_2a6b4c5f00", "resource_type": "image"}}} lost_ruins_2a6b4c5f00 .jpg image/jpeg 1632.80 https://res.cloudinary.com/won-games/image/upload/v1621523007/lost_ruins_2a6b4c5f00.jpg \N cloudinary {"public_id": "lost_ruins_2a6b4c5f00", "resource_type": "image"} \N \N 2021-05-20 12:03:29.543-03 2021-05-20 12:03:29.543-03 265 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 10.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e .jpg image/jpeg 932.49 https://res.cloudinary.com/won-games/image/upload/v1621523001/witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_ce59848f7e", "resource_type": "image"} \N \N 2021-05-20 12:03:29.612-03 2021-05-20 12:03:29.612-03 266 dorfromantik.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_dorfromantik_86cfe747a4.jpg", "hash": "thumbnail_dorfromantik_86cfe747a4", "mime": "image/jpeg", "name": "thumbnail_dorfromantik.jpg", "path": null, "size": 11.68, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dorfromantik_86cfe747a4", "resource_type": "image"}}} dorfromantik_86cfe747a4 .jpg image/jpeg 899.08 https://res.cloudinary.com/won-games/image/upload/v1621523002/dorfromantik_86cfe747a4.jpg \N cloudinary {"public_id": "dorfromantik_86cfe747a4", "resource_type": "image"} \N \N 2021-05-20 12:03:29.629-03 2021-05-20 12:03:29.629-03 267 mundaun.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523006/thumbnail_mundaun_04c16f7f59.jpg", "hash": "thumbnail_mundaun_04c16f7f59", "mime": "image/jpeg", "name": "thumbnail_mundaun.jpg", "path": null, "size": 8.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mundaun_04c16f7f59", "resource_type": "image"}}} mundaun_04c16f7f59 .jpg image/jpeg 459.71 https://res.cloudinary.com/won-games/image/upload/v1621523000/mundaun_04c16f7f59.jpg \N cloudinary {"public_id": "mundaun_04c16f7f59", "resource_type": "image"} \N \N 2021-05-20 12:03:29.749-03 2021-05-20 12:03:29.749-03 268 blazing-chrome.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_blazing_chrome_cac56a64ad.jpg", "hash": "thumbnail_blazing_chrome_cac56a64ad", "mime": "image/jpeg", "name": "thumbnail_blazing-chrome.jpg", "path": null, "size": 12.97, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_blazing_chrome_cac56a64ad", "resource_type": "image"}}} blazing_chrome_cac56a64ad .jpg image/jpeg 917.65 https://res.cloudinary.com/won-games/image/upload/v1621523007/blazing_chrome_cac56a64ad.jpg \N cloudinary {"public_id": "blazing_chrome_cac56a64ad", "resource_type": "image"} \N \N 2021-05-20 12:03:30.02-03 2021-05-20 12:03:30.02-03 269 fallout-new-vegas-ultimate-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_fallout_new_vegas_ultimate_edition_5caf507604.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_5caf507604", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 4.84, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_5caf507604", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_5caf507604 .jpg image/jpeg 1758.38 https://res.cloudinary.com/won-games/image/upload/v1621523007/fallout_new_vegas_ultimate_edition_5caf507604.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_5caf507604", "resource_type": "image"} \N \N 2021-05-20 12:03:30.255-03 2021-05-20 12:03:30.255-03 276 fallout-new-vegas-ultimate-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_fallout_new_vegas_ultimate_edition_203e72eb02.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_203e72eb02", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 10.94, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_203e72eb02", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_203e72eb02 .jpg image/jpeg 3109.80 https://res.cloudinary.com/won-games/image/upload/v1621523006/fallout_new_vegas_ultimate_edition_203e72eb02.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_203e72eb02", "resource_type": "image"} \N \N 2021-05-20 12:03:30.615-03 2021-05-20 12:03:30.615-03 277 disco-elysium.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523007/thumbnail_disco_elysium_8addaa9427.jpg", "hash": "thumbnail_disco_elysium_8addaa9427", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 7.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_disco_elysium_8addaa9427", "resource_type": "image"}}} disco_elysium_8addaa9427 .jpg image/jpeg 300.74 https://res.cloudinary.com/won-games/image/upload/v1621522997/disco_elysium_8addaa9427.jpg \N cloudinary {"public_id": "disco_elysium_8addaa9427", "resource_type": "image"} \N \N 2021-05-20 12:03:30.901-03 2021-05-20 12:03:30.901-03 278 bloodrayne-complete-bundle.jpg \N \N 7680 4320 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_bloodrayne_complete_bundle_4e396391b1.jpg", "hash": "thumbnail_bloodrayne_complete_bundle_4e396391b1", "mime": "image/jpeg", "name": "thumbnail_bloodrayne-complete-bundle.jpg", "path": null, "size": 7.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bloodrayne_complete_bundle_4e396391b1", "resource_type": "image"}}} bloodrayne_complete_bundle_4e396391b1 .jpg image/jpeg 1863.18 https://res.cloudinary.com/won-games/image/upload/v1621523007/bloodrayne_complete_bundle_4e396391b1.jpg \N cloudinary {"public_id": "bloodrayne_complete_bundle_4e396391b1", "resource_type": "image"} \N \N 2021-05-20 12:03:31.441-03 2021-05-20 12:03:31.441-03 279 ghost-of-a-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523010/thumbnail_ghost_of_a_tale_6e264b37e9.jpg", "hash": "thumbnail_ghost_of_a_tale_6e264b37e9", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 17.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_6e264b37e9", "resource_type": "image"}}} ghost_of_a_tale_6e264b37e9 .jpg image/jpeg 2428.91 https://res.cloudinary.com/won-games/image/upload/v1621523008/ghost_of_a_tale_6e264b37e9.jpg \N cloudinary {"public_id": "ghost_of_a_tale_6e264b37e9", "resource_type": "image"} \N \N 2021-05-20 12:03:31.484-03 2021-05-20 12:03:31.484-03 280 fallout-new-vegas-ultimate-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523010/thumbnail_fallout_new_vegas_ultimate_edition_7a4460f3d7.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_7a4460f3d7", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 9.37, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_7a4460f3d7", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_7a4460f3d7 .jpg image/jpeg 2947.70 https://res.cloudinary.com/won-games/image/upload/v1621523007/fallout_new_vegas_ultimate_edition_7a4460f3d7.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_7a4460f3d7", "resource_type": "image"} \N \N 2021-05-20 12:03:32.031-03 2021-05-20 12:03:32.031-03 281 ghost-of-a-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523010/thumbnail_ghost_of_a_tale_c8a9cc4a16.jpg", "hash": "thumbnail_ghost_of_a_tale_c8a9cc4a16", "mime": "image/jpeg", "name": "thumbnail_ghost-of-a-tale.jpg", "path": null, "size": 24.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ghost_of_a_tale_c8a9cc4a16", "resource_type": "image"}}} ghost_of_a_tale_c8a9cc4a16 .jpg image/jpeg 1920.03 https://res.cloudinary.com/won-games/image/upload/v1621523009/ghost_of_a_tale_c8a9cc4a16.jpg \N cloudinary {"public_id": "ghost_of_a_tale_c8a9cc4a16", "resource_type": "image"} \N \N 2021-05-20 12:03:32.049-03 2021-05-20 12:03:32.049-03 569 myst.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_myst_7361e6a7b3.jpg", "hash": "thumbnail_myst_7361e6a7b3", "mime": "image/jpeg", "name": "thumbnail_myst.jpg", "path": null, "size": 6.83, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_myst_7361e6a7b3", "resource_type": "image"}}} myst_7361e6a7b3 .jpg image/jpeg 308.25 https://res.cloudinary.com/won-games/image/upload/v1621523187/myst_7361e6a7b3.jpg \N cloudinary {"public_id": "myst_7361e6a7b3", "resource_type": "image"} \N \N 2021-05-20 12:06:30.883-03 2021-05-20 12:06:30.883-03 271 fallout-new-vegas-ultimate-edition.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_fallout_new_vegas_ultimate_edition_bea802baa3.jpg", "hash": "thumbnail_fallout_new_vegas_ultimate_edition_bea802baa3", "mime": "image/jpeg", "name": "thumbnail_fallout-new-vegas-ultimate-edition.jpg", "path": null, "size": 8.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fallout_new_vegas_ultimate_edition_bea802baa3", "resource_type": "image"}}} fallout_new_vegas_ultimate_edition_bea802baa3 .jpg image/jpeg 2675.62 https://res.cloudinary.com/won-games/image/upload/v1621523006/fallout_new_vegas_ultimate_edition_bea802baa3.jpg \N cloudinary {"public_id": "fallout_new_vegas_ultimate_edition_bea802baa3", "resource_type": "image"} \N \N 2021-05-20 12:03:30.361-03 2021-05-20 12:03:30.361-03 272 fates-of-ort.jpg \N \N 1600 900 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523008/thumbnail_fates_of_ort_b72ec302be.jpg", "hash": "thumbnail_fates_of_ort_b72ec302be", "mime": "image/jpeg", "name": "thumbnail_fates-of-ort.jpg", "path": null, "size": 11.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_fates_of_ort_b72ec302be", "resource_type": "image"}}} fates_of_ort_b72ec302be .jpg image/jpeg 863.72 https://res.cloudinary.com/won-games/image/upload/v1621523007/fates_of_ort_b72ec302be.jpg \N cloudinary {"public_id": "fates_of_ort_b72ec302be", "resource_type": "image"} \N \N 2021-05-20 12:03:30.428-03 2021-05-20 12:03:30.428-03 273 divinity-original-sin-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_divinity_original_sin_2_c845dd1409.jpg", "hash": "thumbnail_divinity_original_sin_2_c845dd1409", "mime": "image/jpeg", "name": "thumbnail_divinity-original-sin-2.jpg", "path": null, "size": 25.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_divinity_original_sin_2_c845dd1409", "resource_type": "image"}}} divinity_original_sin_2_c845dd1409 .jpg image/jpeg 1284.65 https://res.cloudinary.com/won-games/image/upload/v1621523007/divinity_original_sin_2_c845dd1409.jpg \N cloudinary {"public_id": "divinity_original_sin_2_c845dd1409", "resource_type": "image"} \N \N 2021-05-20 12:03:30.548-03 2021-05-20 12:03:30.548-03 274 huniepop-2-double-date.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_huniepop_2_double_date_8bea7980ee.jpg", "hash": "thumbnail_huniepop_2_double_date_8bea7980ee", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 13.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_8bea7980ee", "resource_type": "image"}}} huniepop_2_double_date_8bea7980ee .jpg image/jpeg 1537.26 https://res.cloudinary.com/won-games/image/upload/v1621523007/huniepop_2_double_date_8bea7980ee.jpg \N cloudinary {"public_id": "huniepop_2_double_date_8bea7980ee", "resource_type": "image"} \N \N 2021-05-20 12:03:30.56-03 2021-05-20 12:03:30.56-03 275 witcher-3-wild-hunt-the-blood-and-wine-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523009/thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8.jpg", "hash": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8", "mime": "image/jpeg", "name": "thumbnail_witcher-3-wild-hunt-the-blood-and-wine-pack.jpg", "path": null, "size": 10.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8", "resource_type": "image"}}} witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8 .jpg image/jpeg 988.26 https://res.cloudinary.com/won-games/image/upload/v1621523007/witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8.jpg \N cloudinary {"public_id": "witcher_3_wild_hunt_the_blood_and_wine_pack_fb35b032d8", "resource_type": "image"} \N \N 2021-05-20 12:03:30.606-03 2021-05-20 12:03:30.606-03 282 huniepop-2-double-date.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523011/thumbnail_huniepop_2_double_date_a2d2af1760.jpg", "hash": "thumbnail_huniepop_2_double_date_a2d2af1760", "mime": "image/jpeg", "name": "thumbnail_huniepop-2-double-date.jpg", "path": null, "size": 11.14, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_huniepop_2_double_date_a2d2af1760", "resource_type": "image"}}} huniepop_2_double_date_a2d2af1760 .jpg image/jpeg 1442.05 https://res.cloudinary.com/won-games/image/upload/v1621523008/huniepop_2_double_date_a2d2af1760.jpg \N cloudinary {"public_id": "huniepop_2_double_date_a2d2af1760", "resource_type": "image"} \N \N 2021-05-20 12:03:33.534-03 2021-05-20 12:03:33.534-03 283 biomutant.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523013/thumbnail_biomutant_3d17ccfc2a.jpg", "hash": "thumbnail_biomutant_3d17ccfc2a", "mime": "image/jpeg", "name": "thumbnail_biomutant.jpg", "path": null, "size": 22.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_biomutant_3d17ccfc2a", "resource_type": "image"}}} biomutant_3d17ccfc2a .jpg image/jpeg 1876.81 https://res.cloudinary.com/won-games/image/upload/v1621523011/biomutant_3d17ccfc2a.jpg \N cloudinary {"public_id": "biomutant_3d17ccfc2a", "resource_type": "image"} \N \N 2021-05-20 12:03:34.629-03 2021-05-20 12:03:34.629-03 284 baldurs-gate-iii.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523013/thumbnail_baldurs_gate_iii_7f7963bcd5.jpg", "hash": "thumbnail_baldurs_gate_iii_7f7963bcd5", "mime": "image/jpeg", "name": "thumbnail_baldurs-gate-iii.jpg", "path": null, "size": 34.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_baldurs_gate_iii_7f7963bcd5", "resource_type": "image"}}} baldurs_gate_iii_7f7963bcd5 .jpg image/jpeg 2204.30 https://res.cloudinary.com/won-games/image/upload/v1621523011/baldurs_gate_iii_7f7963bcd5.jpg \N cloudinary {"public_id": "baldurs_gate_iii_7f7963bcd5", "resource_type": "image"} \N \N 2021-05-20 12:03:34.76-03 2021-05-20 12:03:34.76-03 285 va11-halla.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523039/thumbnail_va11_halla_a3bfbf72c2.jpg", "hash": "thumbnail_va11_halla_a3bfbf72c2", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 6.43, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_va11_halla_a3bfbf72c2", "resource_type": "image"}}} va11_halla_a3bfbf72c2 .jpg image/jpeg 346.90 https://res.cloudinary.com/won-games/image/upload/v1621523037/va11_halla_a3bfbf72c2.jpg \N cloudinary {"public_id": "va11_halla_a3bfbf72c2", "resource_type": "image"} \N \N 2021-05-20 12:04:00.5-03 2021-05-20 12:04:00.5-03 286 va11-halla.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523043/thumbnail_va11_halla_b07739a31a.jpg", "hash": "thumbnail_va11_halla_b07739a31a", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 9.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_va11_halla_b07739a31a", "resource_type": "image"}}} va11_halla_b07739a31a .jpg image/jpeg 205.95 https://res.cloudinary.com/won-games/image/upload/v1621523042/va11_halla_b07739a31a.jpg \N cloudinary {"public_id": "va11_halla_b07739a31a", "resource_type": "image"} \N \N 2021-05-20 12:04:04.998-03 2021-05-20 12:04:04.998-03 287 va11-halla.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523044/thumbnail_va11_halla_51f770c7a0.jpg", "hash": "thumbnail_va11_halla_51f770c7a0", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 9.94, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_va11_halla_51f770c7a0", "resource_type": "image"}}} va11_halla_51f770c7a0 .jpg image/jpeg 221.78 https://res.cloudinary.com/won-games/image/upload/v1621523042/va11_halla_51f770c7a0.jpg \N cloudinary {"public_id": "va11_halla_51f770c7a0", "resource_type": "image"} \N \N 2021-05-20 12:04:05.176-03 2021-05-20 12:04:05.176-03 288 va11-halla.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523044/thumbnail_va11_halla_a4087d3fba.jpg", "hash": "thumbnail_va11_halla_a4087d3fba", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 9.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_va11_halla_a4087d3fba", "resource_type": "image"}}} va11_halla_a4087d3fba .jpg image/jpeg 200.69 https://res.cloudinary.com/won-games/image/upload/v1621523042/va11_halla_a4087d3fba.jpg \N cloudinary {"public_id": "va11_halla_a4087d3fba", "resource_type": "image"} \N \N 2021-05-20 12:04:05.424-03 2021-05-20 12:04:05.424-03 289 va11-halla.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523044/thumbnail_va11_halla_936d97c414.jpg", "hash": "thumbnail_va11_halla_936d97c414", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 8.25, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_va11_halla_936d97c414", "resource_type": "image"}}} va11_halla_936d97c414 .jpg image/jpeg 151.92 https://res.cloudinary.com/won-games/image/upload/v1621523042/va11_halla_936d97c414.jpg \N cloudinary {"public_id": "va11_halla_936d97c414", "resource_type": "image"} \N \N 2021-05-20 12:04:05.688-03 2021-05-20 12:04:05.688-03 290 va11-halla.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523044/thumbnail_va11_halla_3b8493d301.jpg", "hash": "thumbnail_va11_halla_3b8493d301", "mime": "image/jpeg", "name": "thumbnail_va11-halla.jpg", "path": null, "size": 10.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_va11_halla_3b8493d301", "resource_type": "image"}}} va11_halla_3b8493d301 .jpg image/jpeg 230.51 https://res.cloudinary.com/won-games/image/upload/v1621523042/va11_halla_3b8493d301.jpg \N cloudinary {"public_id": "va11_halla_3b8493d301", "resource_type": "image"} \N \N 2021-05-20 12:04:06.027-03 2021-05-20 12:04:06.027-03 291 craft-the-world-abandoned-mines.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523073/thumbnail_craft_the_world_abandoned_mines_238b085c2d.jpg", "hash": "thumbnail_craft_the_world_abandoned_mines_238b085c2d", "mime": "image/jpeg", "name": "thumbnail_craft-the-world-abandoned-mines.jpg", "path": null, "size": 6.88, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_craft_the_world_abandoned_mines_238b085c2d", "resource_type": "image"}}} craft_the_world_abandoned_mines_238b085c2d .jpg image/jpeg 230.92 https://res.cloudinary.com/won-games/image/upload/v1621523072/craft_the_world_abandoned_mines_238b085c2d.jpg \N cloudinary {"public_id": "craft_the_world_abandoned_mines_238b085c2d", "resource_type": "image"} \N \N 2021-05-20 12:04:35.007-03 2021-05-20 12:04:35.007-03 292 brigador-modkit-map-editor.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_brigador_modkit_map_editor_e877e461cd.jpg", "hash": "thumbnail_brigador_modkit_map_editor_e877e461cd", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 6.82, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_e877e461cd", "resource_type": "image"}}} brigador_modkit_map_editor_e877e461cd .jpg image/jpeg 371.58 https://res.cloudinary.com/won-games/image/upload/v1621523072/brigador_modkit_map_editor_e877e461cd.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_e877e461cd", "resource_type": "image"} \N \N 2021-05-20 12:04:35.008-03 2021-05-20 12:04:35.008-03 294 scythe-digital-edition-soundtrack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_scythe_digital_edition_soundtrack_18fdabb25e.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_18fdabb25e", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 7.53, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_18fdabb25e", "resource_type": "image"}}} scythe_digital_edition_soundtrack_18fdabb25e .jpg image/jpeg 349.53 https://res.cloudinary.com/won-games/image/upload/v1621523073/scythe_digital_edition_soundtrack_18fdabb25e.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_18fdabb25e", "resource_type": "image"} \N \N 2021-05-20 12:04:35.096-03 2021-05-20 12:04:35.096-03 295 vagrus-the-riven-realms-prologue.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_vagrus_the_riven_realms_prologue_8b2b5a94fd.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_8b2b5a94fd", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 6.56, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_8b2b5a94fd", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_8b2b5a94fd .jpg image/jpeg 286.14 https://res.cloudinary.com/won-games/image/upload/v1621523073/vagrus_the_riven_realms_prologue_8b2b5a94fd.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_8b2b5a94fd", "resource_type": "image"} \N \N 2021-05-20 12:04:35.512-03 2021-05-20 12:04:35.512-03 296 bad-north-jotunn-edition-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_bad_north_jotunn_edition_demo_a28e25c14c.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_a28e25c14c", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 5.24, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_a28e25c14c", "resource_type": "image"}}} bad_north_jotunn_edition_demo_a28e25c14c .jpg image/jpeg 138.93 https://res.cloudinary.com/won-games/image/upload/v1621523072/bad_north_jotunn_edition_demo_a28e25c14c.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_a28e25c14c", "resource_type": "image"} \N \N 2021-05-20 12:04:35.547-03 2021-05-20 12:04:35.547-03 297 dead-cells-rise-of-the-giant.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_dead_cells_rise_of_the_giant_8534cb4a50.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_8534cb4a50", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 8.44, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_8534cb4a50", "resource_type": "image"}}} dead_cells_rise_of_the_giant_8534cb4a50 .jpg image/jpeg 340.70 https://res.cloudinary.com/won-games/image/upload/v1621523073/dead_cells_rise_of_the_giant_8534cb4a50.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_8534cb4a50", "resource_type": "image"} \N \N 2021-05-20 12:04:35.644-03 2021-05-20 12:04:35.644-03 298 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_the_caligula_effect_overdose_stigma_bundle_aa2174bdb8.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_aa2174bdb8", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 6.82, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_aa2174bdb8", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_aa2174bdb8 .jpg image/jpeg 253.72 https://res.cloudinary.com/won-games/image/upload/v1621523072/the_caligula_effect_overdose_stigma_bundle_aa2174bdb8.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_aa2174bdb8", "resource_type": "image"} \N \N 2021-05-20 12:04:35.668-03 2021-05-20 12:04:35.668-03 301 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 9.21, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432 .jpg image/jpeg 330.70 https://res.cloudinary.com/won-games/image/upload/v1621523073/higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_e93bc61432", "resource_type": "image"} \N \N 2021-05-20 12:04:35.752-03 2021-05-20 12:04:35.752-03 307 pc-building-simulator-deadstick-case.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_pc_building_simulator_deadstick_case_732a6b6474.jpg", "hash": "thumbnail_pc_building_simulator_deadstick_case_732a6b6474", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-deadstick-case.jpg", "path": null, "size": 7.82, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_deadstick_case_732a6b6474", "resource_type": "image"}}} pc_building_simulator_deadstick_case_732a6b6474 .jpg image/jpeg 312.52 https://res.cloudinary.com/won-games/image/upload/v1621523073/pc_building_simulator_deadstick_case_732a6b6474.jpg \N cloudinary {"public_id": "pc_building_simulator_deadstick_case_732a6b6474", "resource_type": "image"} \N \N 2021-05-20 12:04:36.315-03 2021-05-20 12:04:36.315-03 602 rogue-shift.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523197/thumbnail_rogue_shift_8ddd05ff8a.jpg", "hash": "thumbnail_rogue_shift_8ddd05ff8a", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 5.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_rogue_shift_8ddd05ff8a", "resource_type": "image"}}} rogue_shift_8ddd05ff8a .jpg image/jpeg 199.24 https://res.cloudinary.com/won-games/image/upload/v1621523191/rogue_shift_8ddd05ff8a.jpg \N cloudinary {"public_id": "rogue_shift_8ddd05ff8a", "resource_type": "image"} \N \N 2021-05-20 12:06:38.186-03 2021-05-20 12:06:38.186-03 293 seven-the-days-long-gone-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523073/thumbnail_seven_the_days_long_gone_demo_951bb216a6.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_951bb216a6", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 6.67, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_951bb216a6", "resource_type": "image"}}} seven_the_days_long_gone_demo_951bb216a6 .jpg image/jpeg 371.99 https://res.cloudinary.com/won-games/image/upload/v1621523072/seven_the_days_long_gone_demo_951bb216a6.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_951bb216a6", "resource_type": "image"} \N \N 2021-05-20 12:04:35.096-03 2021-05-20 12:04:35.096-03 300 tyrian-2000.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_tyrian_2000_e7eeed6833.jpg", "hash": "thumbnail_tyrian_2000_e7eeed6833", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 6.56, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_e7eeed6833", "resource_type": "image"}}} tyrian_2000_e7eeed6833 .jpg image/jpeg 385.20 https://res.cloudinary.com/won-games/image/upload/v1621523072/tyrian_2000_e7eeed6833.jpg \N cloudinary {"public_id": "tyrian_2000_e7eeed6833", "resource_type": "image"} \N \N 2021-05-20 12:04:35.752-03 2021-05-20 12:04:35.752-03 302 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 7.6, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be .jpg image/jpeg 361.06 https://res.cloudinary.com/won-games/image/upload/v1621523073/pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_78d73a09be", "resource_type": "image"} \N \N 2021-05-20 12:04:35.874-03 2021-05-20 12:04:35.874-03 303 the-legend-of-heroes-trails-of-cold-steel-iii-faculty-swimsuit-set.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5.jpg", "hash": "thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5", "mime": "image/jpeg", "name": "thumbnail_the-legend-of-heroes-trails-of-cold-steel-iii-faculty-swimsuit-set.jpg", "path": null, "size": 11.17, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5", "resource_type": "image"}}} the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5 .jpg image/jpeg 504.06 https://res.cloudinary.com/won-games/image/upload/v1621523073/the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5.jpg \N cloudinary {"public_id": "the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_e49be427f5", "resource_type": "image"} \N \N 2021-05-20 12:04:35.932-03 2021-05-20 12:04:35.932-03 304 steel-division-2-reinforcement-pack-4.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_steel_division_2_reinforcement_pack_4_f469a8be0c.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_4_f469a8be0c", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-4.jpg", "path": null, "size": 6.32, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_4_f469a8be0c", "resource_type": "image"}}} steel_division_2_reinforcement_pack_4_f469a8be0c .jpg image/jpeg 381.15 https://res.cloudinary.com/won-games/image/upload/v1621523072/steel_division_2_reinforcement_pack_4_f469a8be0c.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_4_f469a8be0c", "resource_type": "image"} \N \N 2021-05-20 12:04:36.02-03 2021-05-20 12:04:36.02-03 305 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 5.67, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe .jpg image/jpeg 236.96 https://res.cloudinary.com/won-games/image/upload/v1621523072/the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_57ef60fbfe", "resource_type": "image"} \N \N 2021-05-20 12:04:36.184-03 2021-05-20 12:04:36.184-03 306 pc-building-simulator-good-company-case.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_pc_building_simulator_good_company_case_0bf31250d3.jpg", "hash": "thumbnail_pc_building_simulator_good_company_case_0bf31250d3", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-good-company-case.jpg", "path": null, "size": 7.99, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_good_company_case_0bf31250d3", "resource_type": "image"}}} pc_building_simulator_good_company_case_0bf31250d3 .jpg image/jpeg 315.47 https://res.cloudinary.com/won-games/image/upload/v1621523073/pc_building_simulator_good_company_case_0bf31250d3.jpg \N cloudinary {"public_id": "pc_building_simulator_good_company_case_0bf31250d3", "resource_type": "image"} \N \N 2021-05-20 12:04:36.302-03 2021-05-20 12:04:36.302-03 312 xenonauts-2-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_xenonauts_2_demo_fe50143084.jpg", "hash": "thumbnail_xenonauts_2_demo_fe50143084", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 4.01, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_fe50143084", "resource_type": "image"}}} xenonauts_2_demo_fe50143084 .jpg image/jpeg 313.59 https://res.cloudinary.com/won-games/image/upload/v1621523074/xenonauts_2_demo_fe50143084.jpg \N cloudinary {"public_id": "xenonauts_2_demo_fe50143084", "resource_type": "image"} \N \N 2021-05-20 12:04:36.678-03 2021-05-20 12:04:36.678-03 299 destroy-all-humans-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523074/thumbnail_destroy_all_humans_demo_ce85e894a2.jpg", "hash": "thumbnail_destroy_all_humans_demo_ce85e894a2", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 8.72, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_ce85e894a2", "resource_type": "image"}}} destroy_all_humans_demo_ce85e894a2 .jpg image/jpeg 347.83 https://res.cloudinary.com/won-games/image/upload/v1621523073/destroy_all_humans_demo_ce85e894a2.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_ce85e894a2", "resource_type": "image"} \N \N 2021-05-20 12:04:35.751-03 2021-05-20 12:04:35.751-03 322 the-surge-2-jcpd-gear-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_the_surge_2_jcpd_gear_pack_7d155d1774.jpg", "hash": "thumbnail_the_surge_2_jcpd_gear_pack_7d155d1774", "mime": "image/jpeg", "name": "thumbnail_the-surge-2-jcpd-gear-pack.jpg", "path": null, "size": 8.83, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_surge_2_jcpd_gear_pack_7d155d1774", "resource_type": "image"}}} the_surge_2_jcpd_gear_pack_7d155d1774 .jpg image/jpeg 467.74 https://res.cloudinary.com/won-games/image/upload/v1621523074/the_surge_2_jcpd_gear_pack_7d155d1774.jpg \N cloudinary {"public_id": "the_surge_2_jcpd_gear_pack_7d155d1774", "resource_type": "image"} \N \N 2021-05-20 12:04:37.587-03 2021-05-20 12:04:37.587-03 325 the-messenger-picnic-panic.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_the_messenger_picnic_panic_035b13e5f2.jpg", "hash": "thumbnail_the_messenger_picnic_panic_035b13e5f2", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 12.91, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_035b13e5f2", "resource_type": "image"}}} the_messenger_picnic_panic_035b13e5f2 .jpg image/jpeg 667.18 https://res.cloudinary.com/won-games/image/upload/v1621523075/the_messenger_picnic_panic_035b13e5f2.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_035b13e5f2", "resource_type": "image"} \N \N 2021-05-20 12:04:37.614-03 2021-05-20 12:04:37.614-03 326 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 10.69, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc .jpg image/jpeg 607.70 https://res.cloudinary.com/won-games/image/upload/v1621523073/steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_747d04a4bc", "resource_type": "image"} \N \N 2021-05-20 12:04:37.898-03 2021-05-20 12:04:37.898-03 329 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_56491bb073.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_56491bb073", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 9.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_56491bb073", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_56491bb073 .jpg image/jpeg 657.71 https://res.cloudinary.com/won-games/image/upload/v1621523075/kingdom_come_deliverance_hd_voice_pack_french_56491bb073.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_56491bb073", "resource_type": "image"} \N \N 2021-05-20 12:04:38.417-03 2021-05-20 12:04:38.417-03 331 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523077/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_11882854df.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_11882854df", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 9.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_11882854df", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_11882854df .jpg image/jpeg 657.71 https://res.cloudinary.com/won-games/image/upload/v1621523074/kingdom_come_deliverance_hd_voice_pack_english_11882854df.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_11882854df", "resource_type": "image"} \N \N 2021-05-20 12:04:39.671-03 2021-05-20 12:04:39.671-03 332 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523079/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 10.77, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41 .jpg image/jpeg 652.06 https://res.cloudinary.com/won-games/image/upload/v1621523076/mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_68177a0d41", "resource_type": "image"} \N \N 2021-05-20 12:04:41.152-03 2021-05-20 12:04:41.152-03 333 darkest-dungeon-musketeer.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523080/thumbnail_darkest_dungeon_musketeer_de18e8053a.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_de18e8053a", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 6.7, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_de18e8053a", "resource_type": "image"}}} darkest_dungeon_musketeer_de18e8053a .jpg image/jpeg 346.02 https://res.cloudinary.com/won-games/image/upload/v1621523076/darkest_dungeon_musketeer_de18e8053a.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_de18e8053a", "resource_type": "image"} \N \N 2021-05-20 12:04:42.113-03 2021-05-20 12:04:42.113-03 308 beautiful-desolation-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_beautiful_desolation_demo_158c2d39e9.jpg", "hash": "thumbnail_beautiful_desolation_demo_158c2d39e9", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 6.58, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_158c2d39e9", "resource_type": "image"}}} beautiful_desolation_demo_158c2d39e9 .jpg image/jpeg 243.96 https://res.cloudinary.com/won-games/image/upload/v1621523073/beautiful_desolation_demo_158c2d39e9.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_158c2d39e9", "resource_type": "image"} \N \N 2021-05-20 12:04:36.343-03 2021-05-20 12:04:36.343-03 309 pc-building-simulator-galaxy-edition-case.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_pc_building_simulator_galaxy_edition_case_ab23e5498c.jpg", "hash": "thumbnail_pc_building_simulator_galaxy_edition_case_ab23e5498c", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-galaxy-edition-case.jpg", "path": null, "size": 8.03, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_galaxy_edition_case_ab23e5498c", "resource_type": "image"}}} pc_building_simulator_galaxy_edition_case_ab23e5498c .jpg image/jpeg 362.97 https://res.cloudinary.com/won-games/image/upload/v1621523073/pc_building_simulator_galaxy_edition_case_ab23e5498c.jpg \N cloudinary {"public_id": "pc_building_simulator_galaxy_edition_case_ab23e5498c", "resource_type": "image"} \N \N 2021-05-20 12:04:36.362-03 2021-05-20 12:04:36.362-03 310 spiritfarer-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_spiritfarer_demo_7e26cc8839.jpg", "hash": "thumbnail_spiritfarer_demo_7e26cc8839", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 6.41, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_7e26cc8839", "resource_type": "image"}}} spiritfarer_demo_7e26cc8839 .jpg image/jpeg 247.22 https://res.cloudinary.com/won-games/image/upload/v1621523073/spiritfarer_demo_7e26cc8839.jpg \N cloudinary {"public_id": "spiritfarer_demo_7e26cc8839", "resource_type": "image"} \N \N 2021-05-20 12:04:36.617-03 2021-05-20 12:04:36.617-03 311 beneath-a-steel-sky.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_beneath_a_steel_sky_5755849fc9.jpg", "hash": "thumbnail_beneath_a_steel_sky_5755849fc9", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 8.07, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_5755849fc9", "resource_type": "image"}}} beneath_a_steel_sky_5755849fc9 .jpg image/jpeg 366.33 https://res.cloudinary.com/won-games/image/upload/v1621523073/beneath_a_steel_sky_5755849fc9.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_5755849fc9", "resource_type": "image"} \N \N 2021-05-20 12:04:36.674-03 2021-05-20 12:04:36.674-03 313 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 10.4, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d .jpg image/jpeg 451.74 https://res.cloudinary.com/won-games/image/upload/v1621523074/sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_e522edf06d", "resource_type": "image"} \N \N 2021-05-20 12:04:36.745-03 2021-05-20 12:04:36.745-03 314 shadow-tactics-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_shadow_tactics_demo_a2fd5f9bf1.jpg", "hash": "thumbnail_shadow_tactics_demo_a2fd5f9bf1", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 6.79, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_a2fd5f9bf1", "resource_type": "image"}}} shadow_tactics_demo_a2fd5f9bf1 .jpg image/jpeg 279.09 https://res.cloudinary.com/won-games/image/upload/v1621523073/shadow_tactics_demo_a2fd5f9bf1.jpg \N cloudinary {"public_id": "shadow_tactics_demo_a2fd5f9bf1", "resource_type": "image"} \N \N 2021-05-20 12:04:37.023-03 2021-05-20 12:04:37.023-03 315 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 6.61, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd .jpg image/jpeg 366.46 https://res.cloudinary.com/won-games/image/upload/v1621523073/werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_e5476800cd", "resource_type": "image"} \N \N 2021-05-20 12:04:37.056-03 2021-05-20 12:04:37.056-03 316 pathfinder-kingmaker-arcane-unleashed.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_pathfinder_kingmaker_arcane_unleashed_9f0ac7f308.jpg", "hash": "thumbnail_pathfinder_kingmaker_arcane_unleashed_9f0ac7f308", "mime": "image/jpeg", "name": "thumbnail_pathfinder-kingmaker-arcane-unleashed.jpg", "path": null, "size": 8.05, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pathfinder_kingmaker_arcane_unleashed_9f0ac7f308", "resource_type": "image"}}} pathfinder_kingmaker_arcane_unleashed_9f0ac7f308 .jpg image/jpeg 353.97 https://res.cloudinary.com/won-games/image/upload/v1621523074/pathfinder_kingmaker_arcane_unleashed_9f0ac7f308.jpg \N cloudinary {"public_id": "pathfinder_kingmaker_arcane_unleashed_9f0ac7f308", "resource_type": "image"} \N \N 2021-05-20 12:04:37.056-03 2021-05-20 12:04:37.056-03 323 shadow-warrior-complete.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_shadow_warrior_complete_24b95832cd.jpg", "hash": "thumbnail_shadow_warrior_complete_24b95832cd", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 14.24, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_24b95832cd", "resource_type": "image"}}} shadow_warrior_complete_24b95832cd .jpg image/jpeg 418.87 https://res.cloudinary.com/won-games/image/upload/v1621523074/shadow_warrior_complete_24b95832cd.jpg \N cloudinary {"public_id": "shadow_warrior_complete_24b95832cd", "resource_type": "image"} \N \N 2021-05-20 12:04:37.587-03 2021-05-20 12:04:37.587-03 317 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 9.43, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03 .jpg image/jpeg 508.60 https://res.cloudinary.com/won-games/image/upload/v1621523073/ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_08da69ec03", "resource_type": "image"} \N \N 2021-05-20 12:04:37.139-03 2021-05-20 12:04:37.139-03 318 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_phantom_doctrine_halloween_scare_tactics_0fe93781de.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_0fe93781de", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 6.23, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_0fe93781de", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_0fe93781de .jpg image/jpeg 326.45 https://res.cloudinary.com/won-games/image/upload/v1621523074/phantom_doctrine_halloween_scare_tactics_0fe93781de.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_0fe93781de", "resource_type": "image"} \N \N 2021-05-20 12:04:37.261-03 2021-05-20 12:04:37.261-03 319 treasure-adventure-game.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523075/thumbnail_treasure_adventure_game_a280231ec9.jpg", "hash": "thumbnail_treasure_adventure_game_a280231ec9", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 5.95, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_a280231ec9", "resource_type": "image"}}} treasure_adventure_game_a280231ec9 .jpg image/jpeg 344.19 https://res.cloudinary.com/won-games/image/upload/v1621523073/treasure_adventure_game_a280231ec9.jpg \N cloudinary {"public_id": "treasure_adventure_game_a280231ec9", "resource_type": "image"} \N \N 2021-05-20 12:04:37.276-03 2021-05-20 12:04:37.276-03 320 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 7.93, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212 .jpg image/jpeg 562.97 https://res.cloudinary.com/won-games/image/upload/v1621523074/pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_43065ff212", "resource_type": "image"} \N \N 2021-05-20 12:04:37.352-03 2021-05-20 12:04:37.352-03 321 pillars-of-eternity-deadfire-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_pillars_of_eternity_deadfire_pack_2ecb75da66.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_2ecb75da66", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 8.81, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_2ecb75da66", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_2ecb75da66 .jpg image/jpeg 433.91 https://res.cloudinary.com/won-games/image/upload/v1621523074/pillars_of_eternity_deadfire_pack_2ecb75da66.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_2ecb75da66", "resource_type": "image"} \N \N 2021-05-20 12:04:37.457-03 2021-05-20 12:04:37.457-03 324 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 8.76, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7 .jpg image/jpeg 434.85 https://res.cloudinary.com/won-games/image/upload/v1621523074/the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_ada2e128b7", "resource_type": "image"} \N \N 2021-05-20 12:04:37.588-03 2021-05-20 12:04:37.588-03 330 ultima-4.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523077/thumbnail_ultima_4_a3c647cdaa.jpg", "hash": "thumbnail_ultima_4_a3c647cdaa", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 7.36, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_ultima_4_a3c647cdaa", "resource_type": "image"}}} ultima_4_a3c647cdaa .jpg image/jpeg 592.74 https://res.cloudinary.com/won-games/image/upload/v1621523075/ultima_4_a3c647cdaa.jpg \N cloudinary {"public_id": "ultima_4_a3c647cdaa", "resource_type": "image"} \N \N 2021-05-20 12:04:38.857-03 2021-05-20 12:04:38.857-03 335 tyrian-2000.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523082/thumbnail_tyrian_2000_fa4bb987af.jpg", "hash": "thumbnail_tyrian_2000_fa4bb987af", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 9.32, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_fa4bb987af", "resource_type": "image"}}} tyrian_2000_fa4bb987af .jpg image/jpeg 79.14 https://res.cloudinary.com/won-games/image/upload/v1621523077/tyrian_2000_fa4bb987af.jpg \N cloudinary {"public_id": "tyrian_2000_fa4bb987af", "resource_type": "image"} \N \N 2021-05-20 12:04:43.339-03 2021-05-20 12:04:43.339-03 385 beneath-a-steel-sky.jpg \N \N 711 532 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beneath_a_steel_sky_c347b27d9f.jpg", "hash": "thumbnail_beneath_a_steel_sky_c347b27d9f", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 9.85, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_c347b27d9f", "resource_type": "image"}}} beneath_a_steel_sky_c347b27d9f .jpg image/jpeg 234.88 https://res.cloudinary.com/won-games/image/upload/v1621523085/beneath_a_steel_sky_c347b27d9f.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_c347b27d9f", "resource_type": "image"} \N \N 2021-05-20 12:04:55.956-03 2021-05-20 12:04:55.956-03 327 willy-morgan-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_willy_morgan_demo_fb9a48e955.jpg", "hash": "thumbnail_willy_morgan_demo_fb9a48e955", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 7.38, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_fb9a48e955", "resource_type": "image"}}} willy_morgan_demo_fb9a48e955 .jpg image/jpeg 400.79 https://res.cloudinary.com/won-games/image/upload/v1621523074/willy_morgan_demo_fb9a48e955.jpg \N cloudinary {"public_id": "willy_morgan_demo_fb9a48e955", "resource_type": "image"} \N \N 2021-05-20 12:04:38.02-03 2021-05-20 12:04:38.02-03 328 desperados-iii-demo.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523076/thumbnail_desperados_iii_demo_a400e7a6ff.jpg", "hash": "thumbnail_desperados_iii_demo_a400e7a6ff", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 8.25, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_a400e7a6ff", "resource_type": "image"}}} desperados_iii_demo_a400e7a6ff .jpg image/jpeg 473.82 https://res.cloudinary.com/won-games/image/upload/v1621523074/desperados_iii_demo_a400e7a6ff.jpg \N cloudinary {"public_id": "desperados_iii_demo_a400e7a6ff", "resource_type": "image"} \N \N 2021-05-20 12:04:38.127-03 2021-05-20 12:04:38.127-03 334 kingdom-come-deliverance-hd-sound-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523081/thumbnail_kingdom_come_deliverance_hd_sound_pack_e3e352cc32.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_sound_pack_e3e352cc32", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-sound-pack.jpg", "path": null, "size": 9.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_sound_pack_e3e352cc32", "resource_type": "image"}}} kingdom_come_deliverance_hd_sound_pack_e3e352cc32 .jpg image/jpeg 657.71 https://res.cloudinary.com/won-games/image/upload/v1621523077/kingdom_come_deliverance_hd_sound_pack_e3e352cc32.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_sound_pack_e3e352cc32", "resource_type": "image"} \N \N 2021-05-20 12:04:42.488-03 2021-05-20 12:04:42.488-03 336 tyrian-2000.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523082/thumbnail_tyrian_2000_594a360ad2.jpg", "hash": "thumbnail_tyrian_2000_594a360ad2", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 6.33, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_594a360ad2", "resource_type": "image"}}} tyrian_2000_594a360ad2 .jpg image/jpeg 42.57 https://res.cloudinary.com/won-games/image/upload/v1621523077/tyrian_2000_594a360ad2.jpg \N cloudinary {"public_id": "tyrian_2000_594a360ad2", "resource_type": "image"} \N \N 2021-05-20 12:04:43.89-03 2021-05-20 12:04:43.89-03 337 tyrian-2000.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523082/thumbnail_tyrian_2000_11bc76e17c.jpg", "hash": "thumbnail_tyrian_2000_11bc76e17c", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 7.94, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_11bc76e17c", "resource_type": "image"}}} tyrian_2000_11bc76e17c .jpg image/jpeg 57.93 https://res.cloudinary.com/won-games/image/upload/v1621523077/tyrian_2000_11bc76e17c.jpg \N cloudinary {"public_id": "tyrian_2000_11bc76e17c", "resource_type": "image"} \N \N 2021-05-20 12:04:43.95-03 2021-05-20 12:04:43.95-03 338 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523082/thumbnail_megadimension_neptunia_viir_free_dlc_pack_cdc8268919.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_cdc8268919", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 8.62, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_cdc8268919", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_cdc8268919 .jpg image/jpeg 425.39 https://res.cloudinary.com/won-games/image/upload/v1621523077/megadimension_neptunia_viir_free_dlc_pack_cdc8268919.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_cdc8268919", "resource_type": "image"} \N \N 2021-05-20 12:04:43.97-03 2021-05-20 12:04:43.97-03 339 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523083/thumbnail_kingdom_come_deliverance_hd_texture_pack_f345735a98.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_f345735a98", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 9.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_f345735a98", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_f345735a98 .jpg image/jpeg 657.71 https://res.cloudinary.com/won-games/image/upload/v1621523077/kingdom_come_deliverance_hd_texture_pack_f345735a98.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_f345735a98", "resource_type": "image"} \N \N 2021-05-20 12:04:44.143-03 2021-05-20 12:04:44.143-03 341 bad-north-jotunn-edition-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523084/thumbnail_bad_north_jotunn_edition_demo_a0f99bfc13.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_a0f99bfc13", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 3.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_a0f99bfc13", "resource_type": "image"}}} bad_north_jotunn_edition_demo_a0f99bfc13 .jpg image/jpeg 103.11 https://res.cloudinary.com/won-games/image/upload/v1621523078/bad_north_jotunn_edition_demo_a0f99bfc13.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_a0f99bfc13", "resource_type": "image"} \N \N 2021-05-20 12:04:45.044-03 2021-05-20 12:04:45.044-03 342 tyrian-2000.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523087/thumbnail_tyrian_2000_20f53d29ae.jpg", "hash": "thumbnail_tyrian_2000_20f53d29ae", "mime": "image/jpeg", "name": "thumbnail_tyrian-2000.jpg", "path": null, "size": 8.37, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_tyrian_2000_20f53d29ae", "resource_type": "image"}}} tyrian_2000_20f53d29ae .jpg image/jpeg 58.39 https://res.cloudinary.com/won-games/image/upload/v1621523077/tyrian_2000_20f53d29ae.jpg \N cloudinary {"public_id": "tyrian_2000_20f53d29ae", "resource_type": "image"} \N \N 2021-05-20 12:04:48.484-03 2021-05-20 12:04:48.484-03 340 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523082/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_44ad711414.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_44ad711414", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 9.45, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_44ad711414", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_44ad711414 .jpg image/jpeg 657.71 https://res.cloudinary.com/won-games/image/upload/v1621523077/kingdom_come_deliverance_hd_voice_pack_german_44ad711414.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_44ad711414", "resource_type": "image"} \N \N 2021-05-20 12:04:44.227-03 2021-05-20 12:04:44.227-03 352 scythe-digital-edition-soundtrack.jpg \N \N 1696 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_scythe_digital_edition_soundtrack_c98c4da286.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_c98c4da286", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 36.96, "width": 245, "height": 156, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_c98c4da286", "resource_type": "image"}}} scythe_digital_edition_soundtrack_c98c4da286 .jpg image/jpeg 448.16 https://res.cloudinary.com/won-games/image/upload/v1621523080/scythe_digital_edition_soundtrack_c98c4da286.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_c98c4da286", "resource_type": "image"} \N \N 2021-05-20 12:04:50.877-03 2021-05-20 12:04:50.877-03 353 vagrus-the-riven-realms-prologue.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_vagrus_the_riven_realms_prologue_64065c657f.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_64065c657f", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 27.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_64065c657f", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_64065c657f .jpg image/jpeg 545.59 https://res.cloudinary.com/won-games/image/upload/v1621523080/vagrus_the_riven_realms_prologue_64065c657f.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_64065c657f", "resource_type": "image"} \N \N 2021-05-20 12:04:51.076-03 2021-05-20 12:04:51.076-03 354 bad-north-jotunn-edition-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523090/thumbnail_bad_north_jotunn_edition_demo_8637135c57.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_8637135c57", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 7.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_8637135c57", "resource_type": "image"}}} bad_north_jotunn_edition_demo_8637135c57 .jpg image/jpeg 232.41 https://res.cloudinary.com/won-games/image/upload/v1621523081/bad_north_jotunn_edition_demo_8637135c57.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_8637135c57", "resource_type": "image"} \N \N 2021-05-20 12:04:51.453-03 2021-05-20 12:04:51.453-03 355 brigador-modkit-map-editor.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523090/thumbnail_brigador_modkit_map_editor_24ba261496.jpg", "hash": "thumbnail_brigador_modkit_map_editor_24ba261496", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 6.77, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_24ba261496", "resource_type": "image"}}} brigador_modkit_map_editor_24ba261496 .jpg image/jpeg 407.37 https://res.cloudinary.com/won-games/image/upload/v1621523080/brigador_modkit_map_editor_24ba261496.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_24ba261496", "resource_type": "image"} \N \N 2021-05-20 12:04:51.946-03 2021-05-20 12:04:51.946-03 356 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523090/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 10.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d .jpg image/jpeg 406.50 https://res.cloudinary.com/won-games/image/upload/v1621523080/pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_e4fc0d524d", "resource_type": "image"} \N \N 2021-05-20 12:04:52.336-03 2021-05-20 12:04:52.336-03 357 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d .jpg image/jpeg 230.93 https://res.cloudinary.com/won-games/image/upload/v1621523082/pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_ed1995ea0d", "resource_type": "image"} \N \N 2021-05-20 12:04:52.36-03 2021-05-20 12:04:52.36-03 358 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_the_caligula_effect_overdose_stigma_bundle_71035f3336.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_71035f3336", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 16.51, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_71035f3336", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_71035f3336 .jpg image/jpeg 262.80 https://res.cloudinary.com/won-games/image/upload/v1621523081/the_caligula_effect_overdose_stigma_bundle_71035f3336.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_71035f3336", "resource_type": "image"} \N \N 2021-05-20 12:04:52.388-03 2021-05-20 12:04:52.388-03 344 seven-the-days-long-gone-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523088/thumbnail_seven_the_days_long_gone_demo_a4e8e9c440.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_a4e8e9c440", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 7.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_a4e8e9c440", "resource_type": "image"}}} seven_the_days_long_gone_demo_a4e8e9c440 .jpg image/jpeg 507.55 https://res.cloudinary.com/won-games/image/upload/v1621523078/seven_the_days_long_gone_demo_a4e8e9c440.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_a4e8e9c440", "resource_type": "image"} \N \N 2021-05-20 12:04:48.839-03 2021-05-20 12:04:48.839-03 345 bad-north-jotunn-edition-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523087/thumbnail_bad_north_jotunn_edition_demo_7a18c85954.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_7a18c85954", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 4.81, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_7a18c85954", "resource_type": "image"}}} bad_north_jotunn_edition_demo_7a18c85954 .jpg image/jpeg 159.34 https://res.cloudinary.com/won-games/image/upload/v1621523078/bad_north_jotunn_edition_demo_7a18c85954.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_7a18c85954", "resource_type": "image"} \N \N 2021-05-20 12:04:48.929-03 2021-05-20 12:04:48.929-03 346 seven-the-days-long-gone-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523087/thumbnail_seven_the_days_long_gone_demo_4b1a8532b7.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_4b1a8532b7", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 8.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_4b1a8532b7", "resource_type": "image"}}} seven_the_days_long_gone_demo_4b1a8532b7 .jpg image/jpeg 362.98 https://res.cloudinary.com/won-games/image/upload/v1621523079/seven_the_days_long_gone_demo_4b1a8532b7.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_4b1a8532b7", "resource_type": "image"} \N \N 2021-05-20 12:04:49.16-03 2021-05-20 12:04:49.16-03 347 steel-division-2-reinforcement-pack-2.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523088/thumbnail_steel_division_2_reinforcement_pack_2_3f022de76c.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_2_3f022de76c", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-2.jpg", "path": null, "size": 8.11, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_2_3f022de76c", "resource_type": "image"}}} steel_division_2_reinforcement_pack_2_3f022de76c .jpg image/jpeg 466.91 https://res.cloudinary.com/won-games/image/upload/v1621523080/steel_division_2_reinforcement_pack_2_3f022de76c.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_2_3f022de76c", "resource_type": "image"} \N \N 2021-05-20 12:04:49.699-03 2021-05-20 12:04:49.699-03 348 brigador-modkit-map-editor.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_brigador_modkit_map_editor_9278a4c1b0.jpg", "hash": "thumbnail_brigador_modkit_map_editor_9278a4c1b0", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 4.51, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_9278a4c1b0", "resource_type": "image"}}} brigador_modkit_map_editor_9278a4c1b0 .jpg image/jpeg 351.61 https://res.cloudinary.com/won-games/image/upload/v1621523080/brigador_modkit_map_editor_9278a4c1b0.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_9278a4c1b0", "resource_type": "image"} \N \N 2021-05-20 12:04:50.252-03 2021-05-20 12:04:50.252-03 349 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 6.17, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6 .jpg image/jpeg 172.93 https://res.cloudinary.com/won-games/image/upload/v1621523079/the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_56b70dc9f6", "resource_type": "image"} \N \N 2021-05-20 12:04:50.291-03 2021-05-20 12:04:50.291-03 350 bad-north-jotunn-edition-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_bad_north_jotunn_edition_demo_c3e9791292.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_c3e9791292", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 5.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_c3e9791292", "resource_type": "image"}}} bad_north_jotunn_edition_demo_c3e9791292 .jpg image/jpeg 170.04 https://res.cloudinary.com/won-games/image/upload/v1621523079/bad_north_jotunn_edition_demo_c3e9791292.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_c3e9791292", "resource_type": "image"} \N \N 2021-05-20 12:04:50.386-03 2021-05-20 12:04:50.386-03 351 dead-cells-rise-of-the-giant.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523089/thumbnail_dead_cells_rise_of_the_giant_3d2d61fc2e.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_3d2d61fc2e", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 8.87, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_3d2d61fc2e", "resource_type": "image"}}} dead_cells_rise_of_the_giant_3d2d61fc2e .jpg image/jpeg 550.95 https://res.cloudinary.com/won-games/image/upload/v1621523080/dead_cells_rise_of_the_giant_3d2d61fc2e.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_3d2d61fc2e", "resource_type": "image"} \N \N 2021-05-20 12:04:50.869-03 2021-05-20 12:04:50.869-03 362 seven-the-days-long-gone-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_seven_the_days_long_gone_demo_7f0af9eb8c.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_7f0af9eb8c", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 6.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_7f0af9eb8c", "resource_type": "image"}}} seven_the_days_long_gone_demo_7f0af9eb8c .jpg image/jpeg 404.81 https://res.cloudinary.com/won-games/image/upload/v1621523082/seven_the_days_long_gone_demo_7f0af9eb8c.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_7f0af9eb8c", "resource_type": "image"} \N \N 2021-05-20 12:04:53.071-03 2021-05-20 12:04:53.071-03 359 seven-the-days-long-gone-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_seven_the_days_long_gone_demo_1eecb6a294.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_1eecb6a294", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 11.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_1eecb6a294", "resource_type": "image"}}} seven_the_days_long_gone_demo_1eecb6a294 .jpg image/jpeg 502.40 https://res.cloudinary.com/won-games/image/upload/v1621523081/seven_the_days_long_gone_demo_1eecb6a294.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_1eecb6a294", "resource_type": "image"} \N \N 2021-05-20 12:04:52.46-03 2021-05-20 12:04:52.46-03 360 craft-the-world-abandoned-mines.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_craft_the_world_abandoned_mines_e8da874f21.jpg", "hash": "thumbnail_craft_the_world_abandoned_mines_e8da874f21", "mime": "image/jpeg", "name": "thumbnail_craft-the-world-abandoned-mines.jpg", "path": null, "size": 8.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_craft_the_world_abandoned_mines_e8da874f21", "resource_type": "image"}}} craft_the_world_abandoned_mines_e8da874f21 .jpg image/jpeg 504.34 https://res.cloudinary.com/won-games/image/upload/v1621523081/craft_the_world_abandoned_mines_e8da874f21.jpg \N cloudinary {"public_id": "craft_the_world_abandoned_mines_e8da874f21", "resource_type": "image"} \N \N 2021-05-20 12:04:52.614-03 2021-05-20 12:04:52.614-03 361 bad-north-jotunn-edition-demo.jpg \N \N 1922 1112 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_bad_north_jotunn_edition_demo_27b3c0a537.jpg", "hash": "thumbnail_bad_north_jotunn_edition_demo_27b3c0a537", "mime": "image/jpeg", "name": "thumbnail_bad-north-jotunn-edition-demo.jpg", "path": null, "size": 7.5, "width": 245, "height": 142, "provider_metadata": {"public_id": "thumbnail_bad_north_jotunn_edition_demo_27b3c0a537", "resource_type": "image"}}} bad_north_jotunn_edition_demo_27b3c0a537 .jpg image/jpeg 566.24 https://res.cloudinary.com/won-games/image/upload/v1621523082/bad_north_jotunn_edition_demo_27b3c0a537.jpg \N cloudinary {"public_id": "bad_north_jotunn_edition_demo_27b3c0a537", "resource_type": "image"} \N \N 2021-05-20 12:04:52.733-03 2021-05-20 12:04:52.733-03 363 destroy-all-humans-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523091/thumbnail_destroy_all_humans_demo_e609181503.jpg", "hash": "thumbnail_destroy_all_humans_demo_e609181503", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 6.67, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_e609181503", "resource_type": "image"}}} destroy_all_humans_demo_e609181503 .jpg image/jpeg 216.11 https://res.cloudinary.com/won-games/image/upload/v1621523081/destroy_all_humans_demo_e609181503.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_e609181503", "resource_type": "image"} \N \N 2021-05-20 12:04:53.071-03 2021-05-20 12:04:53.071-03 364 brigador-modkit-map-editor.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523092/thumbnail_brigador_modkit_map_editor_3128181f46.jpg", "hash": "thumbnail_brigador_modkit_map_editor_3128181f46", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 7.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_3128181f46", "resource_type": "image"}}} brigador_modkit_map_editor_3128181f46 .jpg image/jpeg 452.10 https://res.cloudinary.com/won-games/image/upload/v1621523082/brigador_modkit_map_editor_3128181f46.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_3128181f46", "resource_type": "image"} \N \N 2021-05-20 12:04:53.094-03 2021-05-20 12:04:53.094-03 365 destroy-all-humans-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523092/thumbnail_destroy_all_humans_demo_2294e1bb9a.jpg", "hash": "thumbnail_destroy_all_humans_demo_2294e1bb9a", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 6.79, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_2294e1bb9a", "resource_type": "image"}}} destroy_all_humans_demo_2294e1bb9a .jpg image/jpeg 286.21 https://res.cloudinary.com/won-games/image/upload/v1621523082/destroy_all_humans_demo_2294e1bb9a.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_2294e1bb9a", "resource_type": "image"} \N \N 2021-05-20 12:04:53.485-03 2021-05-20 12:04:53.485-03 366 spiritfarer-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523092/thumbnail_spiritfarer_demo_8869c93dcd.jpg", "hash": "thumbnail_spiritfarer_demo_8869c93dcd", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 6.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_8869c93dcd", "resource_type": "image"}}} spiritfarer_demo_8869c93dcd .jpg image/jpeg 318.89 https://res.cloudinary.com/won-games/image/upload/v1621523083/spiritfarer_demo_8869c93dcd.jpg \N cloudinary {"public_id": "spiritfarer_demo_8869c93dcd", "resource_type": "image"} \N \N 2021-05-20 12:04:53.781-03 2021-05-20 12:04:53.781-03 367 pc-building-simulator-good-company-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523092/thumbnail_pc_building_simulator_good_company_case_3462707a7e.jpg", "hash": "thumbnail_pc_building_simulator_good_company_case_3462707a7e", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-good-company-case.jpg", "path": null, "size": 10.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_good_company_case_3462707a7e", "resource_type": "image"}}} pc_building_simulator_good_company_case_3462707a7e .jpg image/jpeg 469.12 https://res.cloudinary.com/won-games/image/upload/v1621523083/pc_building_simulator_good_company_case_3462707a7e.jpg \N cloudinary {"public_id": "pc_building_simulator_good_company_case_3462707a7e", "resource_type": "image"} \N \N 2021-05-20 12:04:54.109-03 2021-05-20 12:04:54.109-03 368 xenonauts-2-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523092/thumbnail_xenonauts_2_demo_d0b02c222d.jpg", "hash": "thumbnail_xenonauts_2_demo_d0b02c222d", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 4.6, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_d0b02c222d", "resource_type": "image"}}} xenonauts_2_demo_d0b02c222d .jpg image/jpeg 143.22 https://res.cloudinary.com/won-games/image/upload/v1621523083/xenonauts_2_demo_d0b02c222d.jpg \N cloudinary {"public_id": "xenonauts_2_demo_d0b02c222d", "resource_type": "image"} \N \N 2021-05-20 12:04:54.47-03 2021-05-20 12:04:54.47-03 369 seven-the-days-long-gone-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_seven_the_days_long_gone_demo_b3fa01fc44.jpg", "hash": "thumbnail_seven_the_days_long_gone_demo_b3fa01fc44", "mime": "image/jpeg", "name": "thumbnail_seven-the-days-long-gone-demo.jpg", "path": null, "size": 10.28, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_seven_the_days_long_gone_demo_b3fa01fc44", "resource_type": "image"}}} seven_the_days_long_gone_demo_b3fa01fc44 .jpg image/jpeg 418.61 https://res.cloudinary.com/won-games/image/upload/v1621523083/seven_the_days_long_gone_demo_b3fa01fc44.jpg \N cloudinary {"public_id": "seven_the_days_long_gone_demo_b3fa01fc44", "resource_type": "image"} \N \N 2021-05-20 12:04:54.497-03 2021-05-20 12:04:54.497-03 370 vagrus-the-riven-realms-prologue.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_vagrus_the_riven_realms_prologue_7855c852ec.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_7855c852ec", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_7855c852ec", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_7855c852ec .jpg image/jpeg 370.56 https://res.cloudinary.com/won-games/image/upload/v1621523083/vagrus_the_riven_realms_prologue_7855c852ec.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_7855c852ec", "resource_type": "image"} \N \N 2021-05-20 12:04:54.673-03 2021-05-20 12:04:54.673-03 371 brigador-modkit-map-editor.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_brigador_modkit_map_editor_2965468626.jpg", "hash": "thumbnail_brigador_modkit_map_editor_2965468626", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 10.38, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_2965468626", "resource_type": "image"}}} brigador_modkit_map_editor_2965468626 .jpg image/jpeg 494.47 https://res.cloudinary.com/won-games/image/upload/v1621523083/brigador_modkit_map_editor_2965468626.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_2965468626", "resource_type": "image"} \N \N 2021-05-20 12:04:54.691-03 2021-05-20 12:04:54.691-03 372 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 9.31, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa .jpg image/jpeg 246.54 https://res.cloudinary.com/won-games/image/upload/v1621523083/higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_0f0298b6fa", "resource_type": "image"} \N \N 2021-05-20 12:04:54.877-03 2021-05-20 12:04:54.877-03 373 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 10.8, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc .jpg image/jpeg 314.75 https://res.cloudinary.com/won-games/image/upload/v1621523083/higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_7da77997fc", "resource_type": "image"} \N \N 2021-05-20 12:04:54.904-03 2021-05-20 12:04:54.904-03 374 scythe-digital-edition-soundtrack.jpg \N \N 1657 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_scythe_digital_edition_soundtrack_9fb85848b7.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_9fb85848b7", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 36.4, "width": 239, "height": 156, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_9fb85848b7", "resource_type": "image"}}} scythe_digital_edition_soundtrack_9fb85848b7 .jpg image/jpeg 607.93 https://res.cloudinary.com/won-games/image/upload/v1621523083/scythe_digital_edition_soundtrack_9fb85848b7.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_9fb85848b7", "resource_type": "image"} \N \N 2021-05-20 12:04:55.068-03 2021-05-20 12:04:55.068-03 377 scythe-digital-edition-soundtrack.jpg \N \N 1831 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_scythe_digital_edition_soundtrack_14c0681c6f.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_14c0681c6f", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 8.42, "width": 245, "height": 145, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_14c0681c6f", "resource_type": "image"}}} scythe_digital_edition_soundtrack_14c0681c6f .jpg image/jpeg 511.92 https://res.cloudinary.com/won-games/image/upload/v1621523084/scythe_digital_edition_soundtrack_14c0681c6f.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_14c0681c6f", "resource_type": "image"} \N \N 2021-05-20 12:04:55.136-03 2021-05-20 12:04:55.136-03 393 craft-the-world-abandoned-mines.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_craft_the_world_abandoned_mines_f6a76123f2.jpg", "hash": "thumbnail_craft_the_world_abandoned_mines_f6a76123f2", "mime": "image/jpeg", "name": "thumbnail_craft-the-world-abandoned-mines.jpg", "path": null, "size": 9.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_craft_the_world_abandoned_mines_f6a76123f2", "resource_type": "image"}}} craft_the_world_abandoned_mines_f6a76123f2 .jpg image/jpeg 590.67 https://res.cloudinary.com/won-games/image/upload/v1621523084/craft_the_world_abandoned_mines_f6a76123f2.jpg \N cloudinary {"public_id": "craft_the_world_abandoned_mines_f6a76123f2", "resource_type": "image"} \N \N 2021-05-20 12:04:56.267-03 2021-05-20 12:04:56.267-03 375 pc-building-simulator-galaxy-edition-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_pc_building_simulator_galaxy_edition_case_66876d6463.jpg", "hash": "thumbnail_pc_building_simulator_galaxy_edition_case_66876d6463", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-galaxy-edition-case.jpg", "path": null, "size": 7.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_galaxy_edition_case_66876d6463", "resource_type": "image"}}} pc_building_simulator_galaxy_edition_case_66876d6463 .jpg image/jpeg 276.43 https://res.cloudinary.com/won-games/image/upload/v1621523084/pc_building_simulator_galaxy_edition_case_66876d6463.jpg \N cloudinary {"public_id": "pc_building_simulator_galaxy_edition_case_66876d6463", "resource_type": "image"} \N \N 2021-05-20 12:04:55.136-03 2021-05-20 12:04:55.136-03 376 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 11.08, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e .jpg image/jpeg 318.58 https://res.cloudinary.com/won-games/image/upload/v1621523083/higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_d344cdae7e", "resource_type": "image"} \N \N 2021-05-20 12:04:55.136-03 2021-05-20 12:04:55.136-03 378 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 9.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229 .jpg image/jpeg 284.45 https://res.cloudinary.com/won-games/image/upload/v1621523084/pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_c4bb24e229", "resource_type": "image"} \N \N 2021-05-20 12:04:55.369-03 2021-05-20 12:04:55.369-03 379 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523093/thumbnail_the_caligula_effect_overdose_stigma_bundle_5cc2f9475a.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_5cc2f9475a", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 19.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_5cc2f9475a", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_5cc2f9475a .jpg image/jpeg 454.21 https://res.cloudinary.com/won-games/image/upload/v1621523083/the_caligula_effect_overdose_stigma_bundle_5cc2f9475a.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_5cc2f9475a", "resource_type": "image"} \N \N 2021-05-20 12:04:55.412-03 2021-05-20 12:04:55.412-03 380 vagrus-the-riven-realms-prologue.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_vagrus_the_riven_realms_prologue_3abe5f59b7.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_3abe5f59b7", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 21.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_3abe5f59b7", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_3abe5f59b7 .jpg image/jpeg 379.62 https://res.cloudinary.com/won-games/image/upload/v1621523083/vagrus_the_riven_realms_prologue_3abe5f59b7.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_3abe5f59b7", "resource_type": "image"} \N \N 2021-05-20 12:04:55.554-03 2021-05-20 12:04:55.554-03 381 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 10.83, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb .jpg image/jpeg 276.32 https://res.cloudinary.com/won-games/image/upload/v1621523084/the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_5903a8c8bb", "resource_type": "image"} \N \N 2021-05-20 12:04:55.679-03 2021-05-20 12:04:55.679-03 382 beautiful-desolation-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_beautiful_desolation_demo_e3b8db284b.jpg", "hash": "thumbnail_beautiful_desolation_demo_e3b8db284b", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 7.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_e3b8db284b", "resource_type": "image"}}} beautiful_desolation_demo_e3b8db284b .jpg image/jpeg 275.90 https://res.cloudinary.com/won-games/image/upload/v1621523084/beautiful_desolation_demo_e3b8db284b.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_e3b8db284b", "resource_type": "image"} \N \N 2021-05-20 12:04:55.762-03 2021-05-20 12:04:55.762-03 383 beneath-a-steel-sky.jpg \N \N 741 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_beneath_a_steel_sky_9a36ad028c.jpg", "hash": "thumbnail_beneath_a_steel_sky_9a36ad028c", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 8.57, "width": 217, "height": 156, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_9a36ad028c", "resource_type": "image"}}} beneath_a_steel_sky_9a36ad028c .jpg image/jpeg 248.83 https://res.cloudinary.com/won-games/image/upload/v1621523084/beneath_a_steel_sky_9a36ad028c.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_9a36ad028c", "resource_type": "image"} \N \N 2021-05-20 12:04:55.805-03 2021-05-20 12:04:55.805-03 384 pc-building-simulator-galaxy-edition-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_pc_building_simulator_galaxy_edition_case_be426d811d.jpg", "hash": "thumbnail_pc_building_simulator_galaxy_edition_case_be426d811d", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-galaxy-edition-case.jpg", "path": null, "size": 9.09, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_galaxy_edition_case_be426d811d", "resource_type": "image"}}} pc_building_simulator_galaxy_edition_case_be426d811d .jpg image/jpeg 347.29 https://res.cloudinary.com/won-games/image/upload/v1621523085/pc_building_simulator_galaxy_edition_case_be426d811d.jpg \N cloudinary {"public_id": "pc_building_simulator_galaxy_edition_case_be426d811d", "resource_type": "image"} \N \N 2021-05-20 12:04:55.927-03 2021-05-20 12:04:55.927-03 386 xenonauts-2-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_xenonauts_2_demo_3140e717e3.jpg", "hash": "thumbnail_xenonauts_2_demo_3140e717e3", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 7.51, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_3140e717e3", "resource_type": "image"}}} xenonauts_2_demo_3140e717e3 .jpg image/jpeg 298.68 https://res.cloudinary.com/won-games/image/upload/v1621523084/xenonauts_2_demo_3140e717e3.jpg \N cloudinary {"public_id": "xenonauts_2_demo_3140e717e3", "resource_type": "image"} \N \N 2021-05-20 12:04:55.971-03 2021-05-20 12:04:55.971-03 387 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_caligula_effect_overdose_stigma_bundle_605e7f1574.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_605e7f1574", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 24.02, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_605e7f1574", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_605e7f1574 .jpg image/jpeg 467.10 https://res.cloudinary.com/won-games/image/upload/v1621523085/the_caligula_effect_overdose_stigma_bundle_605e7f1574.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_605e7f1574", "resource_type": "image"} \N \N 2021-05-20 12:04:56.127-03 2021-05-20 12:04:56.127-03 388 spiritfarer-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_spiritfarer_demo_1e44735242.jpg", "hash": "thumbnail_spiritfarer_demo_1e44735242", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 5.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_1e44735242", "resource_type": "image"}}} spiritfarer_demo_1e44735242 .jpg image/jpeg 300.71 https://res.cloudinary.com/won-games/image/upload/v1621523084/spiritfarer_demo_1e44735242.jpg \N cloudinary {"public_id": "spiritfarer_demo_1e44735242", "resource_type": "image"} \N \N 2021-05-20 12:04:56.137-03 2021-05-20 12:04:56.137-03 389 dead-cells-rise-of-the-giant.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_dead_cells_rise_of_the_giant_a58b1b152b.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_a58b1b152b", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 8.11, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_a58b1b152b", "resource_type": "image"}}} dead_cells_rise_of_the_giant_a58b1b152b .jpg image/jpeg 517.56 https://res.cloudinary.com/won-games/image/upload/v1621523084/dead_cells_rise_of_the_giant_a58b1b152b.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_a58b1b152b", "resource_type": "image"} \N \N 2021-05-20 12:04:56.156-03 2021-05-20 12:04:56.156-03 390 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 8.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f .jpg image/jpeg 939.65 https://res.cloudinary.com/won-games/image/upload/v1621523084/pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_3da4b13c3f", "resource_type": "image"} \N \N 2021-05-20 12:04:56.221-03 2021-05-20 12:04:56.221-03 391 spiritfarer-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_spiritfarer_demo_fa0ae8347e.jpg", "hash": "thumbnail_spiritfarer_demo_fa0ae8347e", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 5.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_fa0ae8347e", "resource_type": "image"}}} spiritfarer_demo_fa0ae8347e .jpg image/jpeg 285.87 https://res.cloudinary.com/won-games/image/upload/v1621523087/spiritfarer_demo_fa0ae8347e.jpg \N cloudinary {"public_id": "spiritfarer_demo_fa0ae8347e", "resource_type": "image"} \N \N 2021-05-20 12:04:56.233-03 2021-05-20 12:04:56.233-03 392 brigador-modkit-map-editor.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_brigador_modkit_map_editor_5dc43d300e.jpg", "hash": "thumbnail_brigador_modkit_map_editor_5dc43d300e", "mime": "image/jpeg", "name": "thumbnail_brigador-modkit-map-editor.jpg", "path": null, "size": 9.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brigador_modkit_map_editor_5dc43d300e", "resource_type": "image"}}} brigador_modkit_map_editor_5dc43d300e .jpg image/jpeg 682.01 https://res.cloudinary.com/won-games/image/upload/v1621523085/brigador_modkit_map_editor_5dc43d300e.jpg \N cloudinary {"public_id": "brigador_modkit_map_editor_5dc43d300e", "resource_type": "image"} \N \N 2021-05-20 12:04:56.265-03 2021-05-20 12:04:56.265-03 394 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_caligula_effect_overdose_stigma_bundle_87a268ef03.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_87a268ef03", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 20.69, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_87a268ef03", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_87a268ef03 .jpg image/jpeg 515.17 https://res.cloudinary.com/won-games/image/upload/v1621523085/the_caligula_effect_overdose_stigma_bundle_87a268ef03.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_87a268ef03", "resource_type": "image"} \N \N 2021-05-20 12:04:56.306-03 2021-05-20 12:04:56.306-03 403 scythe-digital-edition-soundtrack.jpg \N \N 1920 974 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_scythe_digital_edition_soundtrack_833bdd8e74.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_833bdd8e74", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 76.32, "width": 245, "height": 124, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_833bdd8e74", "resource_type": "image"}}} scythe_digital_edition_soundtrack_833bdd8e74 .jpg image/jpeg 536.06 https://res.cloudinary.com/won-games/image/upload/v1621523084/scythe_digital_edition_soundtrack_833bdd8e74.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_833bdd8e74", "resource_type": "image"} \N \N 2021-05-20 12:04:56.59-03 2021-05-20 12:04:56.59-03 395 the-legend-of-heroes-trails-of-cold-steel-iii-faculty-swimsuit-set.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723.jpg", "hash": "thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723", "mime": "image/jpeg", "name": "thumbnail_the-legend-of-heroes-trails-of-cold-steel-iii-faculty-swimsuit-set.jpg", "path": null, "size": 9.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723", "resource_type": "image"}}} the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723 .jpg image/jpeg 272.02 https://res.cloudinary.com/won-games/image/upload/v1621523084/the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723.jpg \N cloudinary {"public_id": "the_legend_of_heroes_trails_of_cold_steel_iii_faculty_swimsuit_set_642476c723", "resource_type": "image"} \N \N 2021-05-20 12:04:56.358-03 2021-05-20 12:04:56.358-03 396 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 11.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf .jpg image/jpeg 294.60 https://res.cloudinary.com/won-games/image/upload/v1621523084/the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_b46a9b27cf", "resource_type": "image"} \N \N 2021-05-20 12:04:56.359-03 2021-05-20 12:04:56.359-03 397 dead-cells-rise-of-the-giant.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_dead_cells_rise_of_the_giant_12dde3b6eb.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_12dde3b6eb", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 7.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_12dde3b6eb", "resource_type": "image"}}} dead_cells_rise_of_the_giant_12dde3b6eb .jpg image/jpeg 480.25 https://res.cloudinary.com/won-games/image/upload/v1621523084/dead_cells_rise_of_the_giant_12dde3b6eb.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_12dde3b6eb", "resource_type": "image"} \N \N 2021-05-20 12:04:56.375-03 2021-05-20 12:04:56.375-03 398 scythe-digital-edition-soundtrack.jpg \N \N 1733 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_scythe_digital_edition_soundtrack_8c829ff4b8.jpg", "hash": "thumbnail_scythe_digital_edition_soundtrack_8c829ff4b8", "mime": "image/jpeg", "name": "thumbnail_scythe-digital-edition-soundtrack.jpg", "path": null, "size": 51.15, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_scythe_digital_edition_soundtrack_8c829ff4b8", "resource_type": "image"}}} scythe_digital_edition_soundtrack_8c829ff4b8 .jpg image/jpeg 518.96 https://res.cloudinary.com/won-games/image/upload/v1621523085/scythe_digital_edition_soundtrack_8c829ff4b8.jpg \N cloudinary {"public_id": "scythe_digital_edition_soundtrack_8c829ff4b8", "resource_type": "image"} \N \N 2021-05-20 12:04:56.429-03 2021-05-20 12:04:56.429-03 399 steel-division-2-reinforcement-pack-4.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_steel_division_2_reinforcement_pack_4_5d3ccca5c8.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_4_5d3ccca5c8", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-4.jpg", "path": null, "size": 6.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_4_5d3ccca5c8", "resource_type": "image"}}} steel_division_2_reinforcement_pack_4_5d3ccca5c8 .jpg image/jpeg 426.81 https://res.cloudinary.com/won-games/image/upload/v1621523085/steel_division_2_reinforcement_pack_4_5d3ccca5c8.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_4_5d3ccca5c8", "resource_type": "image"} \N \N 2021-05-20 12:04:56.454-03 2021-05-20 12:04:56.454-03 400 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 10.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1 .jpg image/jpeg 348.51 https://res.cloudinary.com/won-games/image/upload/v1621523088/the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_1d2193a9a1", "resource_type": "image"} \N \N 2021-05-20 12:04:56.493-03 2021-05-20 12:04:56.493-03 401 pc-building-simulator-deadstick-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_pc_building_simulator_deadstick_case_90918f25c6.jpg", "hash": "thumbnail_pc_building_simulator_deadstick_case_90918f25c6", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-deadstick-case.jpg", "path": null, "size": 9.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_deadstick_case_90918f25c6", "resource_type": "image"}}} pc_building_simulator_deadstick_case_90918f25c6 .jpg image/jpeg 371.70 https://res.cloudinary.com/won-games/image/upload/v1621523086/pc_building_simulator_deadstick_case_90918f25c6.jpg \N cloudinary {"public_id": "pc_building_simulator_deadstick_case_90918f25c6", "resource_type": "image"} \N \N 2021-05-20 12:04:56.581-03 2021-05-20 12:04:56.581-03 402 beautiful-desolation-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beautiful_desolation_demo_ae7113cda5.jpg", "hash": "thumbnail_beautiful_desolation_demo_ae7113cda5", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 9.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_ae7113cda5", "resource_type": "image"}}} beautiful_desolation_demo_ae7113cda5 .jpg image/jpeg 403.32 https://res.cloudinary.com/won-games/image/upload/v1621523087/beautiful_desolation_demo_ae7113cda5.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_ae7113cda5", "resource_type": "image"} \N \N 2021-05-20 12:04:56.589-03 2021-05-20 12:04:56.589-03 404 the-witcher-3-wild-hunt-free-dlc-program.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_witcher_3_wild_hunt_free_dlc_program_86355abb0a.jpg", "hash": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_86355abb0a", "mime": "image/jpeg", "name": "thumbnail_the-witcher-3-wild-hunt-free-dlc-program.jpg", "path": null, "size": 12.49, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_witcher_3_wild_hunt_free_dlc_program_86355abb0a", "resource_type": "image"}}} the_witcher_3_wild_hunt_free_dlc_program_86355abb0a .jpg image/jpeg 296.15 https://res.cloudinary.com/won-games/image/upload/v1621523084/the_witcher_3_wild_hunt_free_dlc_program_86355abb0a.jpg \N cloudinary {"public_id": "the_witcher_3_wild_hunt_free_dlc_program_86355abb0a", "resource_type": "image"} \N \N 2021-05-20 12:04:56.604-03 2021-05-20 12:04:56.604-03 410 shadow-warrior-complete.jpg \N \N 710 531 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_shadow_warrior_complete_976df8a3a4.jpg", "hash": "thumbnail_shadow_warrior_complete_976df8a3a4", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 13.72, "width": 209, "height": 156, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_976df8a3a4", "resource_type": "image"}}} shadow_warrior_complete_976df8a3a4 .jpg image/jpeg 107.38 https://res.cloudinary.com/won-games/image/upload/v1621523088/shadow_warrior_complete_976df8a3a4.jpg \N cloudinary {"public_id": "shadow_warrior_complete_976df8a3a4", "resource_type": "image"} \N \N 2021-05-20 12:04:56.829-03 2021-05-20 12:04:56.829-03 411 craft-the-world-abandoned-mines.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523094/thumbnail_craft_the_world_abandoned_mines_454f91ec69.jpg", "hash": "thumbnail_craft_the_world_abandoned_mines_454f91ec69", "mime": "image/jpeg", "name": "thumbnail_craft-the-world-abandoned-mines.jpg", "path": null, "size": 8.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_craft_the_world_abandoned_mines_454f91ec69", "resource_type": "image"}}} craft_the_world_abandoned_mines_454f91ec69 .jpg image/jpeg 521.98 https://res.cloudinary.com/won-games/image/upload/v1621523084/craft_the_world_abandoned_mines_454f91ec69.jpg \N cloudinary {"public_id": "craft_the_world_abandoned_mines_454f91ec69", "resource_type": "image"} \N \N 2021-05-20 12:04:56.865-03 2021-05-20 12:04:56.865-03 413 pathfinder-kingmaker-arcane-unleashed.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pathfinder_kingmaker_arcane_unleashed_1c027471a3.jpg", "hash": "thumbnail_pathfinder_kingmaker_arcane_unleashed_1c027471a3", "mime": "image/jpeg", "name": "thumbnail_pathfinder-kingmaker-arcane-unleashed.jpg", "path": null, "size": 8.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pathfinder_kingmaker_arcane_unleashed_1c027471a3", "resource_type": "image"}}} pathfinder_kingmaker_arcane_unleashed_1c027471a3 .jpg image/jpeg 566.63 https://res.cloudinary.com/won-games/image/upload/v1621523088/pathfinder_kingmaker_arcane_unleashed_1c027471a3.jpg \N cloudinary {"public_id": "pathfinder_kingmaker_arcane_unleashed_1c027471a3", "resource_type": "image"} \N \N 2021-05-20 12:04:56.879-03 2021-05-20 12:04:56.879-03 414 shadow-tactics-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_shadow_tactics_demo_dcd628c518.jpg", "hash": "thumbnail_shadow_tactics_demo_dcd628c518", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 7.09, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_dcd628c518", "resource_type": "image"}}} shadow_tactics_demo_dcd628c518 .jpg image/jpeg 427.73 https://res.cloudinary.com/won-games/image/upload/v1621523089/shadow_tactics_demo_dcd628c518.jpg \N cloudinary {"public_id": "shadow_tactics_demo_dcd628c518", "resource_type": "image"} \N \N 2021-05-20 12:04:56.9-03 2021-05-20 12:04:56.9-03 415 destroy-all-humans-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_destroy_all_humans_demo_88a1cb5236.jpg", "hash": "thumbnail_destroy_all_humans_demo_88a1cb5236", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 7.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_88a1cb5236", "resource_type": "image"}}} destroy_all_humans_demo_88a1cb5236 .jpg image/jpeg 419.05 https://res.cloudinary.com/won-games/image/upload/v1621523084/destroy_all_humans_demo_88a1cb5236.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_88a1cb5236", "resource_type": "image"} \N \N 2021-05-20 12:04:56.95-03 2021-05-20 12:04:56.95-03 416 shadow-warrior-complete.jpg \N \N 710 531 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_shadow_warrior_complete_6c6a286065.jpg", "hash": "thumbnail_shadow_warrior_complete_6c6a286065", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 13.79, "width": 209, "height": 156, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_6c6a286065", "resource_type": "image"}}} shadow_warrior_complete_6c6a286065 .jpg image/jpeg 97.71 https://res.cloudinary.com/won-games/image/upload/v1621523088/shadow_warrior_complete_6c6a286065.jpg \N cloudinary {"public_id": "shadow_warrior_complete_6c6a286065", "resource_type": "image"} \N \N 2021-05-20 12:04:56.969-03 2021-05-20 12:04:56.969-03 417 xenonauts-2-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_xenonauts_2_demo_292a9549c0.jpg", "hash": "thumbnail_xenonauts_2_demo_292a9549c0", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 9.06, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_292a9549c0", "resource_type": "image"}}} xenonauts_2_demo_292a9549c0 .jpg image/jpeg 523.59 https://res.cloudinary.com/won-games/image/upload/v1621523088/xenonauts_2_demo_292a9549c0.jpg \N cloudinary {"public_id": "xenonauts_2_demo_292a9549c0", "resource_type": "image"} \N \N 2021-05-20 12:04:56.981-03 2021-05-20 12:04:56.981-03 418 treasure-adventure-game.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_treasure_adventure_game_dd7dda1e39.jpg", "hash": "thumbnail_treasure_adventure_game_dd7dda1e39", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 12.28, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_dd7dda1e39", "resource_type": "image"}}} treasure_adventure_game_dd7dda1e39 .jpg image/jpeg 99.98 https://res.cloudinary.com/won-games/image/upload/v1621523088/treasure_adventure_game_dd7dda1e39.jpg \N cloudinary {"public_id": "treasure_adventure_game_dd7dda1e39", "resource_type": "image"} \N \N 2021-05-20 12:04:57.01-03 2021-05-20 12:04:57.01-03 405 treasure-adventure-game.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_treasure_adventure_game_91a2cb212c.jpg", "hash": "thumbnail_treasure_adventure_game_91a2cb212c", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 11.78, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_91a2cb212c", "resource_type": "image"}}} treasure_adventure_game_91a2cb212c .jpg image/jpeg 101.89 https://res.cloudinary.com/won-games/image/upload/v1621523088/treasure_adventure_game_91a2cb212c.jpg \N cloudinary {"public_id": "treasure_adventure_game_91a2cb212c", "resource_type": "image"} \N \N 2021-05-20 12:04:56.612-03 2021-05-20 12:04:56.612-03 406 beneath-a-steel-sky.jpg \N \N 743 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beneath_a_steel_sky_afca473b14.jpg", "hash": "thumbnail_beneath_a_steel_sky_afca473b14", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 10.97, "width": 217, "height": 156, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_afca473b14", "resource_type": "image"}}} beneath_a_steel_sky_afca473b14 .jpg image/jpeg 310.12 https://res.cloudinary.com/won-games/image/upload/v1621523085/beneath_a_steel_sky_afca473b14.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_afca473b14", "resource_type": "image"} \N \N 2021-05-20 12:04:56.749-03 2021-05-20 12:04:56.749-03 407 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 11.44, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774 .jpg image/jpeg 331.72 https://res.cloudinary.com/won-games/image/upload/v1621523088/higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_6b68bb4774", "resource_type": "image"} \N \N 2021-05-20 12:04:56.783-03 2021-05-20 12:04:56.783-03 408 pathfinder-kingmaker-arcane-unleashed.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_pathfinder_kingmaker_arcane_unleashed_151279d3c9.jpg", "hash": "thumbnail_pathfinder_kingmaker_arcane_unleashed_151279d3c9", "mime": "image/jpeg", "name": "thumbnail_pathfinder-kingmaker-arcane-unleashed.jpg", "path": null, "size": 5.97, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pathfinder_kingmaker_arcane_unleashed_151279d3c9", "resource_type": "image"}}} pathfinder_kingmaker_arcane_unleashed_151279d3c9 .jpg image/jpeg 212.25 https://res.cloudinary.com/won-games/image/upload/v1621523088/pathfinder_kingmaker_arcane_unleashed_151279d3c9.jpg \N cloudinary {"public_id": "pathfinder_kingmaker_arcane_unleashed_151279d3c9", "resource_type": "image"} \N \N 2021-05-20 12:04:56.809-03 2021-05-20 12:04:56.809-03 409 destroy-all-humans-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_destroy_all_humans_demo_c30d3e8f6d.jpg", "hash": "thumbnail_destroy_all_humans_demo_c30d3e8f6d", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 10.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_c30d3e8f6d", "resource_type": "image"}}} destroy_all_humans_demo_c30d3e8f6d .jpg image/jpeg 505.80 https://res.cloudinary.com/won-games/image/upload/v1621523088/destroy_all_humans_demo_c30d3e8f6d.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_c30d3e8f6d", "resource_type": "image"} \N \N 2021-05-20 12:04:56.824-03 2021-05-20 12:04:56.824-03 412 beneath-a-steel-sky.jpg \N \N 743 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beneath_a_steel_sky_882f0f778f.jpg", "hash": "thumbnail_beneath_a_steel_sky_882f0f778f", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 10.52, "width": 217, "height": 156, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_882f0f778f", "resource_type": "image"}}} beneath_a_steel_sky_882f0f778f .jpg image/jpeg 302.42 https://res.cloudinary.com/won-games/image/upload/v1621523088/beneath_a_steel_sky_882f0f778f.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_882f0f778f", "resource_type": "image"} \N \N 2021-05-20 12:04:56.878-03 2021-05-20 12:04:56.878-03 420 the-caligula-effect-overdose-stigma-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_the_caligula_effect_overdose_stigma_bundle_39a112cf78.jpg", "hash": "thumbnail_the_caligula_effect_overdose_stigma_bundle_39a112cf78", "mime": "image/jpeg", "name": "thumbnail_the-caligula-effect-overdose-stigma-bundle.jpg", "path": null, "size": 22.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_caligula_effect_overdose_stigma_bundle_39a112cf78", "resource_type": "image"}}} the_caligula_effect_overdose_stigma_bundle_39a112cf78 .jpg image/jpeg 477.80 https://res.cloudinary.com/won-games/image/upload/v1621523088/the_caligula_effect_overdose_stigma_bundle_39a112cf78.jpg \N cloudinary {"public_id": "the_caligula_effect_overdose_stigma_bundle_39a112cf78", "resource_type": "image"} \N \N 2021-05-20 12:04:57.053-03 2021-05-20 12:04:57.053-03 421 xenonauts-2-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_xenonauts_2_demo_24d3eeeb33.jpg", "hash": "thumbnail_xenonauts_2_demo_24d3eeeb33", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 9.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_24d3eeeb33", "resource_type": "image"}}} xenonauts_2_demo_24d3eeeb33 .jpg image/jpeg 515.74 https://res.cloudinary.com/won-games/image/upload/v1621523089/xenonauts_2_demo_24d3eeeb33.jpg \N cloudinary {"public_id": "xenonauts_2_demo_24d3eeeb33", "resource_type": "image"} \N \N 2021-05-20 12:04:57.068-03 2021-05-20 12:04:57.068-03 422 treasure-adventure-game.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_treasure_adventure_game_270b615ae5.jpg", "hash": "thumbnail_treasure_adventure_game_270b615ae5", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 10.37, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_270b615ae5", "resource_type": "image"}}} treasure_adventure_game_270b615ae5 .jpg image/jpeg 66.54 https://res.cloudinary.com/won-games/image/upload/v1621523087/treasure_adventure_game_270b615ae5.jpg \N cloudinary {"public_id": "treasure_adventure_game_270b615ae5", "resource_type": "image"} \N \N 2021-05-20 12:04:57.107-03 2021-05-20 12:04:57.107-03 419 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 9.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee .jpg image/jpeg 438.82 https://res.cloudinary.com/won-games/image/upload/v1621523089/werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_f9b424a5ee", "resource_type": "image"} \N \N 2021-05-20 12:04:57.043-03 2021-05-20 12:04:57.043-03 423 dead-cells-rise-of-the-giant.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_dead_cells_rise_of_the_giant_993aca84c4.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_993aca84c4", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 9.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_993aca84c4", "resource_type": "image"}}} dead_cells_rise_of_the_giant_993aca84c4 .jpg image/jpeg 614.47 https://res.cloudinary.com/won-games/image/upload/v1621523088/dead_cells_rise_of_the_giant_993aca84c4.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_993aca84c4", "resource_type": "image"} \N \N 2021-05-20 12:04:57.157-03 2021-05-20 12:04:57.157-03 447 vagrus-the-riven-realms-prologue.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_vagrus_the_riven_realms_prologue_2f88113579.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_2f88113579", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 23.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_2f88113579", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_2f88113579 .jpg image/jpeg 546.55 https://res.cloudinary.com/won-games/image/upload/v1621523088/vagrus_the_riven_realms_prologue_2f88113579.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_2f88113579", "resource_type": "image"} \N \N 2021-05-20 12:04:57.767-03 2021-05-20 12:04:57.767-03 448 pathfinder-kingmaker-arcane-unleashed.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pathfinder_kingmaker_arcane_unleashed_abe3dc8017.jpg", "hash": "thumbnail_pathfinder_kingmaker_arcane_unleashed_abe3dc8017", "mime": "image/jpeg", "name": "thumbnail_pathfinder-kingmaker-arcane-unleashed.jpg", "path": null, "size": 8.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pathfinder_kingmaker_arcane_unleashed_abe3dc8017", "resource_type": "image"}}} pathfinder_kingmaker_arcane_unleashed_abe3dc8017 .jpg image/jpeg 460.37 https://res.cloudinary.com/won-games/image/upload/v1621523090/pathfinder_kingmaker_arcane_unleashed_abe3dc8017.jpg \N cloudinary {"public_id": "pathfinder_kingmaker_arcane_unleashed_abe3dc8017", "resource_type": "image"} \N \N 2021-05-20 12:04:57.802-03 2021-05-20 12:04:57.802-03 449 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 11.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec .jpg image/jpeg 474.86 https://res.cloudinary.com/won-games/image/upload/v1621523089/werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_f2b9a6f9ec", "resource_type": "image"} \N \N 2021-05-20 12:04:57.852-03 2021-05-20 12:04:57.852-03 450 shadow-warrior-complete.jpg \N \N 710 531 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_shadow_warrior_complete_eb4dc6d1e8.jpg", "hash": "thumbnail_shadow_warrior_complete_eb4dc6d1e8", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 13.75, "width": 209, "height": 156, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_eb4dc6d1e8", "resource_type": "image"}}} shadow_warrior_complete_eb4dc6d1e8 .jpg image/jpeg 97.05 https://res.cloudinary.com/won-games/image/upload/v1621523088/shadow_warrior_complete_eb4dc6d1e8.jpg \N cloudinary {"public_id": "shadow_warrior_complete_eb4dc6d1e8", "resource_type": "image"} \N \N 2021-05-20 12:04:57.888-03 2021-05-20 12:04:57.888-03 451 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_phantom_doctrine_halloween_scare_tactics_3798516d64.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_3798516d64", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 8.37, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_3798516d64", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_3798516d64 .jpg image/jpeg 423.87 https://res.cloudinary.com/won-games/image/upload/v1621523090/phantom_doctrine_halloween_scare_tactics_3798516d64.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_3798516d64", "resource_type": "image"} \N \N 2021-05-20 12:04:57.924-03 2021-05-20 12:04:57.924-03 455 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 10.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d .jpg image/jpeg 406.50 https://res.cloudinary.com/won-games/image/upload/v1621523089/pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_f9cc9e054d", "resource_type": "image"} \N \N 2021-05-20 12:04:58.111-03 2021-05-20 12:04:58.111-03 424 treasure-adventure-game.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_treasure_adventure_game_1fff34b72d.jpg", "hash": "thumbnail_treasure_adventure_game_1fff34b72d", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 12.88, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_1fff34b72d", "resource_type": "image"}}} treasure_adventure_game_1fff34b72d .jpg image/jpeg 96.80 https://res.cloudinary.com/won-games/image/upload/v1621523088/treasure_adventure_game_1fff34b72d.jpg \N cloudinary {"public_id": "treasure_adventure_game_1fff34b72d", "resource_type": "image"} \N \N 2021-05-20 12:04:57.158-03 2021-05-20 12:04:57.158-03 461 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 7.61, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c .jpg image/jpeg 263.67 https://res.cloudinary.com/won-games/image/upload/v1621523088/pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_eec1a8477c", "resource_type": "image"} \N \N 2021-05-20 12:04:58.163-03 2021-05-20 12:04:58.163-03 425 steel-division-2-reinforcement-pack-4.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_steel_division_2_reinforcement_pack_4_efa97d766c.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_4_efa97d766c", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-4.jpg", "path": null, "size": 5.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_4_efa97d766c", "resource_type": "image"}}} steel_division_2_reinforcement_pack_4_efa97d766c .jpg image/jpeg 524.33 https://res.cloudinary.com/won-games/image/upload/v1621523088/steel_division_2_reinforcement_pack_4_efa97d766c.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_4_efa97d766c", "resource_type": "image"} \N \N 2021-05-20 12:04:57.169-03 2021-05-20 12:04:57.169-03 426 xenonauts-2-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_xenonauts_2_demo_bf53980700.jpg", "hash": "thumbnail_xenonauts_2_demo_bf53980700", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2-demo.jpg", "path": null, "size": 11.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_demo_bf53980700", "resource_type": "image"}}} xenonauts_2_demo_bf53980700 .jpg image/jpeg 475.34 https://res.cloudinary.com/won-games/image/upload/v1621523089/xenonauts_2_demo_bf53980700.jpg \N cloudinary {"public_id": "xenonauts_2_demo_bf53980700", "resource_type": "image"} \N \N 2021-05-20 12:04:57.169-03 2021-05-20 12:04:57.169-03 427 pillars-of-eternity-deadfire-pack.jpg \N \N 616 353 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_pillars_of_eternity_deadfire_pack_94adda3a43.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_94adda3a43", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 9.14, "width": 245, "height": 140, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_94adda3a43", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_94adda3a43 .jpg image/jpeg 47.07 https://res.cloudinary.com/won-games/image/upload/v1621523088/pillars_of_eternity_deadfire_pack_94adda3a43.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_94adda3a43", "resource_type": "image"} \N \N 2021-05-20 12:04:57.193-03 2021-05-20 12:04:57.193-03 428 destroy-all-humans-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_destroy_all_humans_demo_6d73145b27.jpg", "hash": "thumbnail_destroy_all_humans_demo_6d73145b27", "mime": "image/jpeg", "name": "thumbnail_destroy-all-humans-demo.jpg", "path": null, "size": 11.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_destroy_all_humans_demo_6d73145b27", "resource_type": "image"}}} destroy_all_humans_demo_6d73145b27 .jpg image/jpeg 726.48 https://res.cloudinary.com/won-games/image/upload/v1621523089/destroy_all_humans_demo_6d73145b27.jpg \N cloudinary {"public_id": "destroy_all_humans_demo_6d73145b27", "resource_type": "image"} \N \N 2021-05-20 12:04:57.213-03 2021-05-20 12:04:57.213-03 429 dead-cells-rise-of-the-giant.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_dead_cells_rise_of_the_giant_93461ae61b.jpg", "hash": "thumbnail_dead_cells_rise_of_the_giant_93461ae61b", "mime": "image/jpeg", "name": "thumbnail_dead-cells-rise-of-the-giant.jpg", "path": null, "size": 9.21, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dead_cells_rise_of_the_giant_93461ae61b", "resource_type": "image"}}} dead_cells_rise_of_the_giant_93461ae61b .jpg image/jpeg 547.13 https://res.cloudinary.com/won-games/image/upload/v1621523088/dead_cells_rise_of_the_giant_93461ae61b.jpg \N cloudinary {"public_id": "dead_cells_rise_of_the_giant_93461ae61b", "resource_type": "image"} \N \N 2021-05-20 12:04:57.274-03 2021-05-20 12:04:57.274-03 430 shadow-warrior-complete.jpg \N \N 710 531 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_shadow_warrior_complete_825b6a87f9.jpg", "hash": "thumbnail_shadow_warrior_complete_825b6a87f9", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 12.51, "width": 209, "height": 156, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_825b6a87f9", "resource_type": "image"}}} shadow_warrior_complete_825b6a87f9 .jpg image/jpeg 83.50 https://res.cloudinary.com/won-games/image/upload/v1621523088/shadow_warrior_complete_825b6a87f9.jpg \N cloudinary {"public_id": "shadow_warrior_complete_825b6a87f9", "resource_type": "image"} \N \N 2021-05-20 12:04:57.296-03 2021-05-20 12:04:57.296-03 431 pillars-of-eternity-ii-deadfire-critical-role-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-critical-role-pack.jpg", "path": null, "size": 6.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8 .jpg image/jpeg 657.37 https://res.cloudinary.com/won-games/image/upload/v1621523088/pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_critical_role_pack_48c73643a8", "resource_type": "image"} \N \N 2021-05-20 12:04:57.301-03 2021-05-20 12:04:57.301-03 432 spiritfarer-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_spiritfarer_demo_198c1cb957.jpg", "hash": "thumbnail_spiritfarer_demo_198c1cb957", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 7.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_198c1cb957", "resource_type": "image"}}} spiritfarer_demo_198c1cb957 .jpg image/jpeg 373.32 https://res.cloudinary.com/won-games/image/upload/v1621523088/spiritfarer_demo_198c1cb957.jpg \N cloudinary {"public_id": "spiritfarer_demo_198c1cb957", "resource_type": "image"} \N \N 2021-05-20 12:04:57.356-03 2021-05-20 12:04:57.356-03 433 vagrus-the-riven-realms-prologue.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_vagrus_the_riven_realms_prologue_ed5c9aa061.jpg", "hash": "thumbnail_vagrus_the_riven_realms_prologue_ed5c9aa061", "mime": "image/jpeg", "name": "thumbnail_vagrus-the-riven-realms-prologue.jpg", "path": null, "size": 22.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vagrus_the_riven_realms_prologue_ed5c9aa061", "resource_type": "image"}}} vagrus_the_riven_realms_prologue_ed5c9aa061 .jpg image/jpeg 621.76 https://res.cloudinary.com/won-games/image/upload/v1621523089/vagrus_the_riven_realms_prologue_ed5c9aa061.jpg \N cloudinary {"public_id": "vagrus_the_riven_realms_prologue_ed5c9aa061", "resource_type": "image"} \N \N 2021-05-20 12:04:57.365-03 2021-05-20 12:04:57.365-03 434 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_phantom_doctrine_halloween_scare_tactics_260808c379.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_260808c379", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 9.44, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_260808c379", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_260808c379 .jpg image/jpeg 546.47 https://res.cloudinary.com/won-games/image/upload/v1621523091/phantom_doctrine_halloween_scare_tactics_260808c379.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_260808c379", "resource_type": "image"} \N \N 2021-05-20 12:04:57.431-03 2021-05-20 12:04:57.431-03 435 treasure-adventure-game.jpg \N \N 710 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_treasure_adventure_game_5d4ee026cd.jpg", "hash": "thumbnail_treasure_adventure_game_5d4ee026cd", "mime": "image/jpeg", "name": "thumbnail_treasure-adventure-game.jpg", "path": null, "size": 10.42, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_treasure_adventure_game_5d4ee026cd", "resource_type": "image"}}} treasure_adventure_game_5d4ee026cd .jpg image/jpeg 103.63 https://res.cloudinary.com/won-games/image/upload/v1621523087/treasure_adventure_game_5d4ee026cd.jpg \N cloudinary {"public_id": "treasure_adventure_game_5d4ee026cd", "resource_type": "image"} \N \N 2021-05-20 12:04:57.452-03 2021-05-20 12:04:57.452-03 436 beautiful-desolation-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_beautiful_desolation_demo_974d363ee6.jpg", "hash": "thumbnail_beautiful_desolation_demo_974d363ee6", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 12.18, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_974d363ee6", "resource_type": "image"}}} beautiful_desolation_demo_974d363ee6 .jpg image/jpeg 642.97 https://res.cloudinary.com/won-games/image/upload/v1621523089/beautiful_desolation_demo_974d363ee6.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_974d363ee6", "resource_type": "image"} \N \N 2021-05-20 12:04:57.517-03 2021-05-20 12:04:57.517-03 437 pathfinder-kingmaker-arcane-unleashed.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pathfinder_kingmaker_arcane_unleashed_1cd17b93c5.jpg", "hash": "thumbnail_pathfinder_kingmaker_arcane_unleashed_1cd17b93c5", "mime": "image/jpeg", "name": "thumbnail_pathfinder-kingmaker-arcane-unleashed.jpg", "path": null, "size": 8.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pathfinder_kingmaker_arcane_unleashed_1cd17b93c5", "resource_type": "image"}}} pathfinder_kingmaker_arcane_unleashed_1cd17b93c5 .jpg image/jpeg 569.88 https://res.cloudinary.com/won-games/image/upload/v1621523090/pathfinder_kingmaker_arcane_unleashed_1cd17b93c5.jpg \N cloudinary {"public_id": "pathfinder_kingmaker_arcane_unleashed_1cd17b93c5", "resource_type": "image"} \N \N 2021-05-20 12:04:57.557-03 2021-05-20 12:04:57.557-03 438 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec .jpg image/jpeg 230.93 https://res.cloudinary.com/won-games/image/upload/v1621523091/pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_6fd680eaec", "resource_type": "image"} \N \N 2021-05-20 12:04:57.568-03 2021-05-20 12:04:57.568-03 439 beautiful-desolation-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beautiful_desolation_demo_744b595d84.jpg", "hash": "thumbnail_beautiful_desolation_demo_744b595d84", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 8.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_744b595d84", "resource_type": "image"}}} beautiful_desolation_demo_744b595d84 .jpg image/jpeg 393.99 https://res.cloudinary.com/won-games/image/upload/v1621523088/beautiful_desolation_demo_744b595d84.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_744b595d84", "resource_type": "image"} \N \N 2021-05-20 12:04:57.62-03 2021-05-20 12:04:57.62-03 441 beneath-a-steel-sky.jpg \N \N 739 533 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523095/thumbnail_beneath_a_steel_sky_a3003f79e1.jpg", "hash": "thumbnail_beneath_a_steel_sky_a3003f79e1", "mime": "image/jpeg", "name": "thumbnail_beneath-a-steel-sky.jpg", "path": null, "size": 9.19, "width": 216, "height": 156, "provider_metadata": {"public_id": "thumbnail_beneath_a_steel_sky_a3003f79e1", "resource_type": "image"}}} beneath_a_steel_sky_a3003f79e1 .jpg image/jpeg 280.70 https://res.cloudinary.com/won-games/image/upload/v1621523087/beneath_a_steel_sky_a3003f79e1.jpg \N cloudinary {"public_id": "beneath_a_steel_sky_a3003f79e1", "resource_type": "image"} \N \N 2021-05-20 12:04:57.656-03 2021-05-20 12:04:57.656-03 442 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_phantom_doctrine_halloween_scare_tactics_58b86b80a8.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_58b86b80a8", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 6.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_58b86b80a8", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_58b86b80a8 .jpg image/jpeg 542.52 https://res.cloudinary.com/won-games/image/upload/v1621523090/phantom_doctrine_halloween_scare_tactics_58b86b80a8.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_58b86b80a8", "resource_type": "image"} \N \N 2021-05-20 12:04:57.671-03 2021-05-20 12:04:57.671-03 457 the-messenger-picnic-panic.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_the_messenger_picnic_panic_230a219cd2.jpg", "hash": "thumbnail_the_messenger_picnic_panic_230a219cd2", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 10.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_230a219cd2", "resource_type": "image"}}} the_messenger_picnic_panic_230a219cd2 .jpg image/jpeg 584.13 https://res.cloudinary.com/won-games/image/upload/v1621523089/the_messenger_picnic_panic_230a219cd2.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_230a219cd2", "resource_type": "image"} \N \N 2021-05-20 12:04:58.137-03 2021-05-20 12:04:58.137-03 440 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 9.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9 .jpg image/jpeg 284.45 https://res.cloudinary.com/won-games/image/upload/v1621523089/pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_d185eed1e9", "resource_type": "image"} \N \N 2021-05-20 12:04:57.655-03 2021-05-20 12:04:57.655-03 459 shadow-tactics-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_shadow_tactics_demo_9139244a20.jpg", "hash": "thumbnail_shadow_tactics_demo_9139244a20", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 11.73, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_9139244a20", "resource_type": "image"}}} shadow_tactics_demo_9139244a20 .jpg image/jpeg 585.80 https://res.cloudinary.com/won-games/image/upload/v1621523092/shadow_tactics_demo_9139244a20.jpg \N cloudinary {"public_id": "shadow_tactics_demo_9139244a20", "resource_type": "image"} \N \N 2021-05-20 12:04:58.138-03 2021-05-20 12:04:58.138-03 463 willy-morgan-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_willy_morgan_demo_69ce5c467a.jpg", "hash": "thumbnail_willy_morgan_demo_69ce5c467a", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 10.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_69ce5c467a", "resource_type": "image"}}} willy_morgan_demo_69ce5c467a .jpg image/jpeg 625.76 https://res.cloudinary.com/won-games/image/upload/v1621523092/willy_morgan_demo_69ce5c467a.jpg \N cloudinary {"public_id": "willy_morgan_demo_69ce5c467a", "resource_type": "image"} \N \N 2021-05-20 12:04:58.165-03 2021-05-20 12:04:58.165-03 469 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 10.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082 .jpg image/jpeg 473.49 https://res.cloudinary.com/won-games/image/upload/v1621523090/werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_74068c8082", "resource_type": "image"} \N \N 2021-05-20 12:04:58.252-03 2021-05-20 12:04:58.252-03 473 pillars-of-eternity-ii-deadfire-scalawags-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56.jpg", "hash": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-ii-deadfire-scalawags-pack.jpg", "path": null, "size": 7.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56", "resource_type": "image"}}} pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56 .jpg image/jpeg 239.45 https://res.cloudinary.com/won-games/image/upload/v1621523090/pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56.jpg \N cloudinary {"public_id": "pillars_of_eternity_ii_deadfire_scalawags_pack_5cfdeccc56", "resource_type": "image"} \N \N 2021-05-20 12:04:58.472-03 2021-05-20 12:04:58.472-03 500 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_bf910add84.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_bf910add84", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 18.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_bf910add84", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_bf910add84 .jpg image/jpeg 822.07 https://res.cloudinary.com/won-games/image/upload/v1621523094/the_textorcist_the_story_of_ray_bibbia_demo_bf910add84.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_bf910add84", "resource_type": "image"} \N \N 2021-05-20 12:04:59.313-03 2021-05-20 12:04:59.313-03 501 the-messenger-picnic-panic.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_messenger_picnic_panic_f8c6b5c9f3.jpg", "hash": "thumbnail_the_messenger_picnic_panic_f8c6b5c9f3", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 10.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_f8c6b5c9f3", "resource_type": "image"}}} the_messenger_picnic_panic_f8c6b5c9f3 .jpg image/jpeg 615.07 https://res.cloudinary.com/won-games/image/upload/v1621523093/the_messenger_picnic_panic_f8c6b5c9f3.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_f8c6b5c9f3", "resource_type": "image"} \N \N 2021-05-20 12:04:59.36-03 2021-05-20 12:04:59.36-03 502 pillars-of-eternity-deadfire-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_pillars_of_eternity_deadfire_pack_5e3a703662.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_5e3a703662", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 10.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_5e3a703662", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_5e3a703662 .jpg image/jpeg 650.34 https://res.cloudinary.com/won-games/image/upload/v1621523095/pillars_of_eternity_deadfire_pack_5e3a703662.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_5e3a703662", "resource_type": "image"} \N \N 2021-05-20 12:04:59.388-03 2021-05-20 12:04:59.388-03 681 hoa.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_hoa_410c82ca50.jpg", "hash": "thumbnail_hoa_410c82ca50", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 8.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hoa_410c82ca50", "resource_type": "image"}}} hoa_410c82ca50 .jpg image/jpeg 530.51 https://res.cloudinary.com/won-games/image/upload/v1621523202/hoa_410c82ca50.jpg \N cloudinary {"public_id": "hoa_410c82ca50", "resource_type": "image"} \N \N 2021-05-20 12:06:51.602-03 2021-05-20 12:06:51.602-03 443 pillars-of-eternity-deadfire-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pillars_of_eternity_deadfire_pack_8a9e09fa62.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_8a9e09fa62", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 7.28, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_8a9e09fa62", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_8a9e09fa62 .jpg image/jpeg 452.29 https://res.cloudinary.com/won-games/image/upload/v1621523090/pillars_of_eternity_deadfire_pack_8a9e09fa62.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_8a9e09fa62", "resource_type": "image"} \N \N 2021-05-20 12:04:57.688-03 2021-05-20 12:04:57.688-03 444 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 9.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9 .jpg image/jpeg 353.57 https://res.cloudinary.com/won-games/image/upload/v1621523089/werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_3409de30c9", "resource_type": "image"} \N \N 2021-05-20 12:04:57.715-03 2021-05-20 12:04:57.715-03 445 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 17.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94 .jpg image/jpeg 708.08 https://res.cloudinary.com/won-games/image/upload/v1621523090/the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_88b793ef94", "resource_type": "image"} \N \N 2021-05-20 12:04:57.734-03 2021-05-20 12:04:57.734-03 446 pc-building-simulator-deadstick-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pc_building_simulator_deadstick_case_638cbe7609.jpg", "hash": "thumbnail_pc_building_simulator_deadstick_case_638cbe7609", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-deadstick-case.jpg", "path": null, "size": 10.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_deadstick_case_638cbe7609", "resource_type": "image"}}} pc_building_simulator_deadstick_case_638cbe7609 .jpg image/jpeg 418.55 https://res.cloudinary.com/won-games/image/upload/v1621523088/pc_building_simulator_deadstick_case_638cbe7609.jpg \N cloudinary {"public_id": "pc_building_simulator_deadstick_case_638cbe7609", "resource_type": "image"} \N \N 2021-05-20 12:04:57.758-03 2021-05-20 12:04:57.758-03 452 higurashi-when-they-cry-hou-ch1-onikakushi.jpg \N \N 1440 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f.jpg", "hash": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f", "mime": "image/jpeg", "name": "thumbnail_higurashi-when-they-cry-hou-ch1-onikakushi.jpg", "path": null, "size": 11.01, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f", "resource_type": "image"}}} higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f .jpg image/jpeg 324.62 https://res.cloudinary.com/won-games/image/upload/v1621523088/higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f.jpg \N cloudinary {"public_id": "higurashi_when_they_cry_hou_ch1_onikakushi_a432bce72f", "resource_type": "image"} \N \N 2021-05-20 12:04:57.929-03 2021-05-20 12:04:57.929-03 453 beautiful-desolation-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_beautiful_desolation_demo_341d32834b.jpg", "hash": "thumbnail_beautiful_desolation_demo_341d32834b", "mime": "image/jpeg", "name": "thumbnail_beautiful-desolation-demo.jpg", "path": null, "size": 8.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_beautiful_desolation_demo_341d32834b", "resource_type": "image"}}} beautiful_desolation_demo_341d32834b .jpg image/jpeg 409.92 https://res.cloudinary.com/won-games/image/upload/v1621523089/beautiful_desolation_demo_341d32834b.jpg \N cloudinary {"public_id": "beautiful_desolation_demo_341d32834b", "resource_type": "image"} \N \N 2021-05-20 12:04:58.042-03 2021-05-20 12:04:58.042-03 454 spiritfarer-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_spiritfarer_demo_c415f89186.jpg", "hash": "thumbnail_spiritfarer_demo_c415f89186", "mime": "image/jpeg", "name": "thumbnail_spiritfarer-demo.jpg", "path": null, "size": 12.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_spiritfarer_demo_c415f89186", "resource_type": "image"}}} spiritfarer_demo_c415f89186 .jpg image/jpeg 628.69 https://res.cloudinary.com/won-games/image/upload/v1621523091/spiritfarer_demo_c415f89186.jpg \N cloudinary {"public_id": "spiritfarer_demo_c415f89186", "resource_type": "image"} \N \N 2021-05-20 12:04:58.061-03 2021-05-20 12:04:58.061-03 456 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1920 1052 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 7.78, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80 .jpg image/jpeg 481.21 https://res.cloudinary.com/won-games/image/upload/v1621523090/sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_59824f2b80", "resource_type": "image"} \N \N 2021-05-20 12:04:58.111-03 2021-05-20 12:04:58.111-03 458 shadow-warrior-complete.jpg \N \N 710 531 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_shadow_warrior_complete_4327c2c832.jpg", "hash": "thumbnail_shadow_warrior_complete_4327c2c832", "mime": "image/jpeg", "name": "thumbnail_shadow-warrior-complete.jpg", "path": null, "size": 14.47, "width": 209, "height": 156, "provider_metadata": {"public_id": "thumbnail_shadow_warrior_complete_4327c2c832", "resource_type": "image"}}} shadow_warrior_complete_4327c2c832 .jpg image/jpeg 95.18 https://res.cloudinary.com/won-games/image/upload/v1621523091/shadow_warrior_complete_4327c2c832.jpg \N cloudinary {"public_id": "shadow_warrior_complete_4327c2c832", "resource_type": "image"} \N \N 2021-05-20 12:04:58.138-03 2021-05-20 12:04:58.138-03 462 ultima-4.jpg \N \N 710 443 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ultima_4_7a1b659604.jpg", "hash": "thumbnail_ultima_4_7a1b659604", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 13.92, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_ultima_4_7a1b659604", "resource_type": "image"}}} ultima_4_7a1b659604 .jpg image/jpeg 53.92 https://res.cloudinary.com/won-games/image/upload/v1621523092/ultima_4_7a1b659604.jpg \N cloudinary {"public_id": "ultima_4_7a1b659604", "resource_type": "image"} \N \N 2021-05-20 12:04:58.163-03 2021-05-20 12:04:58.163-03 460 willy-morgan-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_willy_morgan_demo_68efa6fa35.jpg", "hash": "thumbnail_willy_morgan_demo_68efa6fa35", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 9.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_68efa6fa35", "resource_type": "image"}}} willy_morgan_demo_68efa6fa35 .jpg image/jpeg 440.19 https://res.cloudinary.com/won-games/image/upload/v1621523091/willy_morgan_demo_68efa6fa35.jpg \N cloudinary {"public_id": "willy_morgan_demo_68efa6fa35", "resource_type": "image"} \N \N 2021-05-20 12:04:58.157-03 2021-05-20 12:04:58.157-03 464 pc-building-simulator-good-company-case.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523096/thumbnail_pc_building_simulator_good_company_case_26c32f027b.jpg", "hash": "thumbnail_pc_building_simulator_good_company_case_26c32f027b", "mime": "image/jpeg", "name": "thumbnail_pc-building-simulator-good-company-case.jpg", "path": null, "size": 9.71, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pc_building_simulator_good_company_case_26c32f027b", "resource_type": "image"}}} pc_building_simulator_good_company_case_26c32f027b .jpg image/jpeg 464.78 https://res.cloudinary.com/won-games/image/upload/v1621523089/pc_building_simulator_good_company_case_26c32f027b.jpg \N cloudinary {"public_id": "pc_building_simulator_good_company_case_26c32f027b", "resource_type": "image"} \N \N 2021-05-20 12:04:58.179-03 2021-05-20 12:04:58.179-03 465 ultima-4.jpg \N \N 710 443 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ultima_4_9f6a3bb643.jpg", "hash": "thumbnail_ultima_4_9f6a3bb643", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 19.33, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_ultima_4_9f6a3bb643", "resource_type": "image"}}} ultima_4_9f6a3bb643 .jpg image/jpeg 137.59 https://res.cloudinary.com/won-games/image/upload/v1621523092/ultima_4_9f6a3bb643.jpg \N cloudinary {"public_id": "ultima_4_9f6a3bb643", "resource_type": "image"} \N \N 2021-05-20 12:04:58.181-03 2021-05-20 12:04:58.181-03 466 the-surge-2-jcpd-gear-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_surge_2_jcpd_gear_pack_4e1f4c823e.jpg", "hash": "thumbnail_the_surge_2_jcpd_gear_pack_4e1f4c823e", "mime": "image/jpeg", "name": "thumbnail_the-surge-2-jcpd-gear-pack.jpg", "path": null, "size": 8.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_surge_2_jcpd_gear_pack_4e1f4c823e", "resource_type": "image"}}} the_surge_2_jcpd_gear_pack_4e1f4c823e .jpg image/jpeg 818.23 https://res.cloudinary.com/won-games/image/upload/v1621523092/the_surge_2_jcpd_gear_pack_4e1f4c823e.jpg \N cloudinary {"public_id": "the_surge_2_jcpd_gear_pack_4e1f4c823e", "resource_type": "image"} \N \N 2021-05-20 12:04:58.221-03 2021-05-20 12:04:58.221-03 467 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_2131831048.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_2131831048", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 17.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_2131831048", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_2131831048 .jpg image/jpeg 789.62 https://res.cloudinary.com/won-games/image/upload/v1621523092/the_textorcist_the_story_of_ray_bibbia_demo_2131831048.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_2131831048", "resource_type": "image"} \N \N 2021-05-20 12:04:58.239-03 2021-05-20 12:04:58.239-03 468 steel-division-2-reinforcement-pack-4.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_steel_division_2_reinforcement_pack_4_d111cacc54.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_4_d111cacc54", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-4.jpg", "path": null, "size": 8.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_4_d111cacc54", "resource_type": "image"}}} steel_division_2_reinforcement_pack_4_d111cacc54 .jpg image/jpeg 811.05 https://res.cloudinary.com/won-games/image/upload/v1621523091/steel_division_2_reinforcement_pack_4_d111cacc54.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_4_d111cacc54", "resource_type": "image"} \N \N 2021-05-20 12:04:58.24-03 2021-05-20 12:04:58.24-03 470 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 7.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0 .jpg image/jpeg 1306.39 https://res.cloudinary.com/won-games/image/upload/v1621523091/steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_94d95512a0", "resource_type": "image"} \N \N 2021-05-20 12:04:58.266-03 2021-05-20 12:04:58.266-03 471 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1440 810 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 10.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4 .jpg image/jpeg 364.86 https://res.cloudinary.com/won-games/image/upload/v1621523092/steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_e983cadfe4", "resource_type": "image"} \N \N 2021-05-20 12:04:58.395-03 2021-05-20 12:04:58.395-03 472 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1920 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 7.6, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881 .jpg image/jpeg 472.37 https://res.cloudinary.com/won-games/image/upload/v1621523093/sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_bc42c3a881", "resource_type": "image"} \N \N 2021-05-20 12:04:58.444-03 2021-05-20 12:04:58.444-03 474 desperados-iii-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_desperados_iii_demo_5063d36df0.jpg", "hash": "thumbnail_desperados_iii_demo_5063d36df0", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 37.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_5063d36df0", "resource_type": "image"}}} desperados_iii_demo_5063d36df0 .jpg image/jpeg 541.33 https://res.cloudinary.com/won-games/image/upload/v1621523093/desperados_iii_demo_5063d36df0.jpg \N cloudinary {"public_id": "desperados_iii_demo_5063d36df0", "resource_type": "image"} \N \N 2021-05-20 12:04:58.472-03 2021-05-20 12:04:58.472-03 477 the-messenger-picnic-panic.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_messenger_picnic_panic_e2115154c0.jpg", "hash": "thumbnail_the_messenger_picnic_panic_e2115154c0", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 9.93, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_e2115154c0", "resource_type": "image"}}} the_messenger_picnic_panic_e2115154c0 .jpg image/jpeg 533.00 https://res.cloudinary.com/won-games/image/upload/v1621523093/the_messenger_picnic_panic_e2115154c0.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_e2115154c0", "resource_type": "image"} \N \N 2021-05-20 12:04:58.638-03 2021-05-20 12:04:58.638-03 480 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 7.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808 .jpg image/jpeg 250.62 https://res.cloudinary.com/won-games/image/upload/v1621523094/kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_fe5faa4808", "resource_type": "image"} \N \N 2021-05-20 12:04:58.674-03 2021-05-20 12:04:58.674-03 481 the-messenger-picnic-panic.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_messenger_picnic_panic_f4c7929c73.jpg", "hash": "thumbnail_the_messenger_picnic_panic_f4c7929c73", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 9.57, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_f4c7929c73", "resource_type": "image"}}} the_messenger_picnic_panic_f4c7929c73 .jpg image/jpeg 519.46 https://res.cloudinary.com/won-games/image/upload/v1621523093/the_messenger_picnic_panic_f4c7929c73.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_f4c7929c73", "resource_type": "image"} \N \N 2021-05-20 12:04:58.756-03 2021-05-20 12:04:58.756-03 482 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_phantom_doctrine_halloween_scare_tactics_7864518786.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_7864518786", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 8.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_7864518786", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_7864518786 .jpg image/jpeg 453.00 https://res.cloudinary.com/won-games/image/upload/v1621523092/phantom_doctrine_halloween_scare_tactics_7864518786.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_7864518786", "resource_type": "image"} \N \N 2021-05-20 12:04:58.846-03 2021-05-20 12:04:58.846-03 486 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1920 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 9.42, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51 .jpg image/jpeg 748.15 https://res.cloudinary.com/won-games/image/upload/v1621523092/sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_8062b1ae51", "resource_type": "image"} \N \N 2021-05-20 12:04:58.935-03 2021-05-20 12:04:58.935-03 488 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 13.94, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a .jpg image/jpeg 478.55 https://res.cloudinary.com/won-games/image/upload/v1621523094/the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_e2a741c43a", "resource_type": "image"} \N \N 2021-05-20 12:04:59.041-03 2021-05-20 12:04:59.041-03 475 willy-morgan-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_willy_morgan_demo_5b6cb33a37.jpg", "hash": "thumbnail_willy_morgan_demo_5b6cb33a37", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 12.86, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_5b6cb33a37", "resource_type": "image"}}} willy_morgan_demo_5b6cb33a37 .jpg image/jpeg 687.04 https://res.cloudinary.com/won-games/image/upload/v1621523091/willy_morgan_demo_5b6cb33a37.jpg \N cloudinary {"public_id": "willy_morgan_demo_5b6cb33a37", "resource_type": "image"} \N \N 2021-05-20 12:04:58.479-03 2021-05-20 12:04:58.479-03 476 shadow-tactics-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_shadow_tactics_demo_a21cb44d89.jpg", "hash": "thumbnail_shadow_tactics_demo_a21cb44d89", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 10.68, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_a21cb44d89", "resource_type": "image"}}} shadow_tactics_demo_a21cb44d89 .jpg image/jpeg 560.43 https://res.cloudinary.com/won-games/image/upload/v1621523093/shadow_tactics_demo_a21cb44d89.jpg \N cloudinary {"public_id": "shadow_tactics_demo_a21cb44d89", "resource_type": "image"} \N \N 2021-05-20 12:04:58.555-03 2021-05-20 12:04:58.555-03 478 shadow-tactics-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_shadow_tactics_demo_ed442f4c17.jpg", "hash": "thumbnail_shadow_tactics_demo_ed442f4c17", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 10.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_ed442f4c17", "resource_type": "image"}}} shadow_tactics_demo_ed442f4c17 .jpg image/jpeg 602.38 https://res.cloudinary.com/won-games/image/upload/v1621523091/shadow_tactics_demo_ed442f4c17.jpg \N cloudinary {"public_id": "shadow_tactics_demo_ed442f4c17", "resource_type": "image"} \N \N 2021-05-20 12:04:58.64-03 2021-05-20 12:04:58.64-03 479 ultima-4.jpg \N \N 710 443 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ultima_4_108d8dd43e.jpg", "hash": "thumbnail_ultima_4_108d8dd43e", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 20.49, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_ultima_4_108d8dd43e", "resource_type": "image"}}} ultima_4_108d8dd43e .jpg image/jpeg 150.67 https://res.cloudinary.com/won-games/image/upload/v1621523093/ultima_4_108d8dd43e.jpg \N cloudinary {"public_id": "ultima_4_108d8dd43e", "resource_type": "image"} \N \N 2021-05-20 12:04:58.661-03 2021-05-20 12:04:58.661-03 483 phantom-doctrine-halloween-scare-tactics.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_phantom_doctrine_halloween_scare_tactics_f2f93f387b.jpg", "hash": "thumbnail_phantom_doctrine_halloween_scare_tactics_f2f93f387b", "mime": "image/jpeg", "name": "thumbnail_phantom-doctrine-halloween-scare-tactics.jpg", "path": null, "size": 7.66, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_phantom_doctrine_halloween_scare_tactics_f2f93f387b", "resource_type": "image"}}} phantom_doctrine_halloween_scare_tactics_f2f93f387b .jpg image/jpeg 443.95 https://res.cloudinary.com/won-games/image/upload/v1621523092/phantom_doctrine_halloween_scare_tactics_f2f93f387b.jpg \N cloudinary {"public_id": "phantom_doctrine_halloween_scare_tactics_f2f93f387b", "resource_type": "image"} \N \N 2021-05-20 12:04:58.847-03 2021-05-20 12:04:58.847-03 484 the-surge-2-jcpd-gear-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_the_surge_2_jcpd_gear_pack_cb301668a7.jpg", "hash": "thumbnail_the_surge_2_jcpd_gear_pack_cb301668a7", "mime": "image/jpeg", "name": "thumbnail_the-surge-2-jcpd-gear-pack.jpg", "path": null, "size": 8.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_surge_2_jcpd_gear_pack_cb301668a7", "resource_type": "image"}}} the_surge_2_jcpd_gear_pack_cb301668a7 .jpg image/jpeg 706.01 https://res.cloudinary.com/won-games/image/upload/v1621523093/the_surge_2_jcpd_gear_pack_cb301668a7.jpg \N cloudinary {"public_id": "the_surge_2_jcpd_gear_pack_cb301668a7", "resource_type": "image"} \N \N 2021-05-20 12:04:58.896-03 2021-05-20 12:04:58.896-03 485 ultima-4.jpg \N \N 710 443 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ultima_4_ff191833b8.jpg", "hash": "thumbnail_ultima_4_ff191833b8", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 20.04, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_ultima_4_ff191833b8", "resource_type": "image"}}} ultima_4_ff191833b8 .jpg image/jpeg 158.42 https://res.cloudinary.com/won-games/image/upload/v1621523093/ultima_4_ff191833b8.jpg \N cloudinary {"public_id": "ultima_4_ff191833b8", "resource_type": "image"} \N \N 2021-05-20 12:04:58.929-03 2021-05-20 12:04:58.929-03 487 willy-morgan-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_willy_morgan_demo_6d1c88d2d1.jpg", "hash": "thumbnail_willy_morgan_demo_6d1c88d2d1", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 11.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_6d1c88d2d1", "resource_type": "image"}}} willy_morgan_demo_6d1c88d2d1 .jpg image/jpeg 555.65 https://res.cloudinary.com/won-games/image/upload/v1621523094/willy_morgan_demo_6d1c88d2d1.jpg \N cloudinary {"public_id": "willy_morgan_demo_6d1c88d2d1", "resource_type": "image"} \N \N 2021-05-20 12:04:59.04-03 2021-05-20 12:04:59.04-03 489 willy-morgan-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_willy_morgan_demo_2f19c06a68.jpg", "hash": "thumbnail_willy_morgan_demo_2f19c06a68", "mime": "image/jpeg", "name": "thumbnail_willy-morgan-demo.jpg", "path": null, "size": 10.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_willy_morgan_demo_2f19c06a68", "resource_type": "image"}}} willy_morgan_demo_2f19c06a68 .jpg image/jpeg 546.82 https://res.cloudinary.com/won-games/image/upload/v1621523095/willy_morgan_demo_2f19c06a68.jpg \N cloudinary {"public_id": "willy_morgan_demo_2f19c06a68", "resource_type": "image"} \N \N 2021-05-20 12:04:59.093-03 2021-05-20 12:04:59.093-03 511 ultima-4.jpg \N \N 710 443 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ultima_4_7cb9e59331.jpg", "hash": "thumbnail_ultima_4_7cb9e59331", "mime": "image/jpeg", "name": "thumbnail_ultima-4.jpg", "path": null, "size": 22.81, "width": 245, "height": 153, "provider_metadata": {"public_id": "thumbnail_ultima_4_7cb9e59331", "resource_type": "image"}}} ultima_4_7cb9e59331 .jpg image/jpeg 156.61 https://res.cloudinary.com/won-games/image/upload/v1621523093/ultima_4_7cb9e59331.jpg \N cloudinary {"public_id": "ultima_4_7cb9e59331", "resource_type": "image"} \N \N 2021-05-20 12:04:59.702-03 2021-05-20 12:04:59.702-03 490 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1920 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 8.87, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7 .jpg image/jpeg 702.85 https://res.cloudinary.com/won-games/image/upload/v1621523093/sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_f987f959f7", "resource_type": "image"} \N \N 2021-05-20 12:04:59.094-03 2021-05-20 12:04:59.094-03 491 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_89437980bb.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_89437980bb", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 6.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_89437980bb", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_89437980bb .jpg image/jpeg 250.69 https://res.cloudinary.com/won-games/image/upload/v1621523094/kingdom_come_deliverance_hd_voice_pack_french_89437980bb.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_89437980bb", "resource_type": "image"} \N \N 2021-05-20 12:04:59.111-03 2021-05-20 12:04:59.111-03 492 the-surge-2-jcpd-gear-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_the_surge_2_jcpd_gear_pack_9eaf20800e.jpg", "hash": "thumbnail_the_surge_2_jcpd_gear_pack_9eaf20800e", "mime": "image/jpeg", "name": "thumbnail_the-surge-2-jcpd-gear-pack.jpg", "path": null, "size": 9.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_surge_2_jcpd_gear_pack_9eaf20800e", "resource_type": "image"}}} the_surge_2_jcpd_gear_pack_9eaf20800e .jpg image/jpeg 830.35 https://res.cloudinary.com/won-games/image/upload/v1621523094/the_surge_2_jcpd_gear_pack_9eaf20800e.jpg \N cloudinary {"public_id": "the_surge_2_jcpd_gear_pack_9eaf20800e", "resource_type": "image"} \N \N 2021-05-20 12:04:59.127-03 2021-05-20 12:04:59.127-03 493 pillars-of-eternity-deadfire-pack.jpg \N \N 1816 1022 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_pillars_of_eternity_deadfire_pack_55b7299ab3.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_55b7299ab3", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 10.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_55b7299ab3", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_55b7299ab3 .jpg image/jpeg 768.65 https://res.cloudinary.com/won-games/image/upload/v1621523095/pillars_of_eternity_deadfire_pack_55b7299ab3.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_55b7299ab3", "resource_type": "image"} \N \N 2021-05-20 12:04:59.164-03 2021-05-20 12:04:59.164-03 494 desperados-iii-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_desperados_iii_demo_c3cf805266.jpg", "hash": "thumbnail_desperados_iii_demo_c3cf805266", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 35.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_c3cf805266", "resource_type": "image"}}} desperados_iii_demo_c3cf805266 .jpg image/jpeg 806.96 https://res.cloudinary.com/won-games/image/upload/v1621523095/desperados_iii_demo_c3cf805266.jpg \N cloudinary {"public_id": "desperados_iii_demo_c3cf805266", "resource_type": "image"} \N \N 2021-05-20 12:04:59.197-03 2021-05-20 12:04:59.197-03 495 pillars-of-eternity-deadfire-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_pillars_of_eternity_deadfire_pack_4d6d925078.jpg", "hash": "thumbnail_pillars_of_eternity_deadfire_pack_4d6d925078", "mime": "image/jpeg", "name": "thumbnail_pillars-of-eternity-deadfire-pack.jpg", "path": null, "size": 11.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pillars_of_eternity_deadfire_pack_4d6d925078", "resource_type": "image"}}} pillars_of_eternity_deadfire_pack_4d6d925078 .jpg image/jpeg 855.29 https://res.cloudinary.com/won-games/image/upload/v1621523094/pillars_of_eternity_deadfire_pack_4d6d925078.jpg \N cloudinary {"public_id": "pillars_of_eternity_deadfire_pack_4d6d925078", "resource_type": "image"} \N \N 2021-05-20 12:04:59.235-03 2021-05-20 12:04:59.235-03 497 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 6.92, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec .jpg image/jpeg 1256.52 https://res.cloudinary.com/won-games/image/upload/v1621523094/steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_0143b5dcec", "resource_type": "image"} \N \N 2021-05-20 12:04:59.273-03 2021-05-20 12:04:59.273-03 499 the-messenger-picnic-panic.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_the_messenger_picnic_panic_2a7ecf9550.jpg", "hash": "thumbnail_the_messenger_picnic_panic_2a7ecf9550", "mime": "image/jpeg", "name": "thumbnail_the-messenger-picnic-panic.jpg", "path": null, "size": 12.55, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_messenger_picnic_panic_2a7ecf9550", "resource_type": "image"}}} the_messenger_picnic_panic_2a7ecf9550 .jpg image/jpeg 750.10 https://res.cloudinary.com/won-games/image/upload/v1621523095/the_messenger_picnic_panic_2a7ecf9550.jpg \N cloudinary {"public_id": "the_messenger_picnic_panic_2a7ecf9550", "resource_type": "image"} \N \N 2021-05-20 12:04:59.304-03 2021-05-20 12:04:59.304-03 496 the-textorcist-the-story-of-ray-bibbia-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd.jpg", "hash": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd", "mime": "image/jpeg", "name": "thumbnail_the-textorcist-the-story-of-ray-bibbia-demo.jpg", "path": null, "size": 16.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd", "resource_type": "image"}}} the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd .jpg image/jpeg 657.64 https://res.cloudinary.com/won-games/image/upload/v1621523094/the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd.jpg \N cloudinary {"public_id": "the_textorcist_the_story_of_ray_bibbia_demo_d8010ceefd", "resource_type": "image"} \N \N 2021-05-20 12:04:59.273-03 2021-05-20 12:04:59.273-03 498 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 10.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4 .jpg image/jpeg 825.76 https://res.cloudinary.com/won-games/image/upload/v1621523094/ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_89c5fd6fa4", "resource_type": "image"} \N \N 2021-05-20 12:04:59.303-03 2021-05-20 12:04:59.303-03 503 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_7847d89048.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_7847d89048", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 6.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_7847d89048", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_7847d89048 .jpg image/jpeg 223.51 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_english_7847d89048.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_7847d89048", "resource_type": "image"} \N \N 2021-05-20 12:04:59.424-03 2021-05-20 12:04:59.424-03 506 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 9.79, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af .jpg image/jpeg 761.44 https://res.cloudinary.com/won-games/image/upload/v1621523093/ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_9a5bb0a0af", "resource_type": "image"} \N \N 2021-05-20 12:04:59.51-03 2021-05-20 12:04:59.51-03 507 sphinx-and-the-cursed-mummy-authoring-tools.jpg \N \N 1920 1050 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_7119706595.jpg", "hash": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_7119706595", "mime": "image/jpeg", "name": "thumbnail_sphinx-and-the-cursed-mummy-authoring-tools.jpg", "path": null, "size": 8.92, "width": 245, "height": 134, "provider_metadata": {"public_id": "thumbnail_sphinx_and_the_cursed_mummy_authoring_tools_7119706595", "resource_type": "image"}}} sphinx_and_the_cursed_mummy_authoring_tools_7119706595 .jpg image/jpeg 763.29 https://res.cloudinary.com/won-games/image/upload/v1621523093/sphinx_and_the_cursed_mummy_authoring_tools_7119706595.jpg \N cloudinary {"public_id": "sphinx_and_the_cursed_mummy_authoring_tools_7119706595", "resource_type": "image"} \N \N 2021-05-20 12:04:59.576-03 2021-05-20 12:04:59.576-03 508 shadow-tactics-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_shadow_tactics_demo_ce2e44bc86.jpg", "hash": "thumbnail_shadow_tactics_demo_ce2e44bc86", "mime": "image/jpeg", "name": "thumbnail_shadow-tactics-demo.jpg", "path": null, "size": 11.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_shadow_tactics_demo_ce2e44bc86", "resource_type": "image"}}} shadow_tactics_demo_ce2e44bc86 .jpg image/jpeg 678.79 https://res.cloudinary.com/won-games/image/upload/v1621523093/shadow_tactics_demo_ce2e44bc86.jpg \N cloudinary {"public_id": "shadow_tactics_demo_ce2e44bc86", "resource_type": "image"} \N \N 2021-05-20 12:04:59.624-03 2021-05-20 12:04:59.624-03 509 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 6.34, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9 .jpg image/jpeg 236.03 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_b9dff193a9", "resource_type": "image"} \N \N 2021-05-20 12:04:59.639-03 2021-05-20 12:04:59.639-03 510 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 8.18, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2 .jpg image/jpeg 351.41 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_c99075f1e2", "resource_type": "image"} \N \N 2021-05-20 12:04:59.656-03 2021-05-20 12:04:59.656-03 504 werewolf-the-apocalypse-heart-of-the-forest-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523097/thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743.jpg", "hash": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743", "mime": "image/jpeg", "name": "thumbnail_werewolf-the-apocalypse-heart-of-the-forest-demo.jpg", "path": null, "size": 9.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743", "resource_type": "image"}}} werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743 .jpg image/jpeg 575.29 https://res.cloudinary.com/won-games/image/upload/v1621523094/werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743.jpg \N cloudinary {"public_id": "werewolf_the_apocalypse_heart_of_the_forest_demo_a5cb2d7743", "resource_type": "image"} \N \N 2021-05-20 12:04:59.424-03 2021-05-20 12:04:59.424-03 505 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 8.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1 .jpg image/jpeg 367.89 https://res.cloudinary.com/won-games/image/upload/v1621523095/kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_c180a96ef1", "resource_type": "image"} \N \N 2021-05-20 12:04:59.504-03 2021-05-20 12:04:59.504-03 516 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 9.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8 .jpg image/jpeg 774.17 https://res.cloudinary.com/won-games/image/upload/v1621523095/ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_ef0ab494a8", "resource_type": "image"} \N \N 2021-05-20 12:05:00.076-03 2021-05-20 12:05:00.076-03 517 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 8, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30 .jpg image/jpeg 338.03 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_aeda1f5a30", "resource_type": "image"} \N \N 2021-05-20 12:05:00.098-03 2021-05-20 12:05:00.098-03 526 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 7.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026 .jpg image/jpeg 1484.87 https://res.cloudinary.com/won-games/image/upload/v1621523097/steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_9a6f7ea026", "resource_type": "image"} \N \N 2021-05-20 12:05:01.005-03 2021-05-20 12:05:01.005-03 530 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_kingdom_come_deliverance_hd_texture_pack_91fe90baa7.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_91fe90baa7", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 10.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_91fe90baa7", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_91fe90baa7 .jpg image/jpeg 585.68 https://res.cloudinary.com/won-games/image/upload/v1621523097/kingdom_come_deliverance_hd_texture_pack_91fe90baa7.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_91fe90baa7", "resource_type": "image"} \N \N 2021-05-20 12:05:01.068-03 2021-05-20 12:05:01.068-03 535 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_texture_pack_7708c3a468.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_7708c3a468", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 9.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_7708c3a468", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_7708c3a468 .jpg image/jpeg 574.53 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_texture_pack_7708c3a468.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_7708c3a468", "resource_type": "image"} \N \N 2021-05-20 12:05:01.217-03 2021-05-20 12:05:01.217-03 536 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_megadimension_neptunia_viir_free_dlc_pack_79828a85a6.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_79828a85a6", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 9.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_79828a85a6", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_79828a85a6 .jpg image/jpeg 553.29 https://res.cloudinary.com/won-games/image/upload/v1621523098/megadimension_neptunia_viir_free_dlc_pack_79828a85a6.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_79828a85a6", "resource_type": "image"} \N \N 2021-05-20 12:05:01.245-03 2021-05-20 12:05:01.245-03 512 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_6661c06405.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_6661c06405", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 6.91, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_6661c06405", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_6661c06405 .jpg image/jpeg 225.45 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_french_6661c06405.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_6661c06405", "resource_type": "image"} \N \N 2021-05-20 12:04:59.823-03 2021-05-20 12:04:59.823-03 513 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 11.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823 .jpg image/jpeg 994.47 https://res.cloudinary.com/won-games/image/upload/v1621523096/ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_9929457823", "resource_type": "image"} \N \N 2021-05-20 12:04:59.89-03 2021-05-20 12:04:59.89-03 514 desperados-iii-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_desperados_iii_demo_62e2a0c20f.jpg", "hash": "thumbnail_desperados_iii_demo_62e2a0c20f", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 30.28, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_62e2a0c20f", "resource_type": "image"}}} desperados_iii_demo_62e2a0c20f .jpg image/jpeg 787.29 https://res.cloudinary.com/won-games/image/upload/v1621523096/desperados_iii_demo_62e2a0c20f.jpg \N cloudinary {"public_id": "desperados_iii_demo_62e2a0c20f", "resource_type": "image"} \N \N 2021-05-20 12:05:00.049-03 2021-05-20 12:05:00.049-03 515 desperados-iii-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523098/thumbnail_desperados_iii_demo_97b9e9506b.jpg", "hash": "thumbnail_desperados_iii_demo_97b9e9506b", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 39.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_97b9e9506b", "resource_type": "image"}}} desperados_iii_demo_97b9e9506b .jpg image/jpeg 779.44 https://res.cloudinary.com/won-games/image/upload/v1621523095/desperados_iii_demo_97b9e9506b.jpg \N cloudinary {"public_id": "desperados_iii_demo_97b9e9506b", "resource_type": "image"} \N \N 2021-05-20 12:05:00.069-03 2021-05-20 12:05:00.069-03 518 kingdom-come-deliverance-hd-voice-pack-english.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-english.jpg", "path": null, "size": 8.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7 .jpg image/jpeg 281.23 https://res.cloudinary.com/won-games/image/upload/v1621523096/kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_english_a15b677aa7", "resource_type": "image"} \N \N 2021-05-20 12:05:00.104-03 2021-05-20 12:05:00.104-03 519 darkest-dungeon-musketeer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_darkest_dungeon_musketeer_bda6a543b5.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_bda6a543b5", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 8.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_bda6a543b5", "resource_type": "image"}}} darkest_dungeon_musketeer_bda6a543b5 .jpg image/jpeg 471.59 https://res.cloudinary.com/won-games/image/upload/v1621523098/darkest_dungeon_musketeer_bda6a543b5.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_bda6a543b5", "resource_type": "image"} \N \N 2021-05-20 12:05:00.22-03 2021-05-20 12:05:00.22-03 520 darkest-dungeon-musketeer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_darkest_dungeon_musketeer_e7c43e5cb3.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_e7c43e5cb3", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 6.84, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_e7c43e5cb3", "resource_type": "image"}}} darkest_dungeon_musketeer_e7c43e5cb3 .jpg image/jpeg 316.90 https://res.cloudinary.com/won-games/image/upload/v1621523097/darkest_dungeon_musketeer_e7c43e5cb3.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_e7c43e5cb3", "resource_type": "image"} \N \N 2021-05-20 12:05:00.34-03 2021-05-20 12:05:00.34-03 521 darkest-dungeon-musketeer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_darkest_dungeon_musketeer_c9bc3d9706.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_c9bc3d9706", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 7.17, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_c9bc3d9706", "resource_type": "image"}}} darkest_dungeon_musketeer_c9bc3d9706 .jpg image/jpeg 474.70 https://res.cloudinary.com/won-games/image/upload/v1621523097/darkest_dungeon_musketeer_c9bc3d9706.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_c9bc3d9706", "resource_type": "image"} \N \N 2021-05-20 12:05:00.6-03 2021-05-20 12:05:00.6-03 522 desperados-iii-demo.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_desperados_iii_demo_9c50abc232.jpg", "hash": "thumbnail_desperados_iii_demo_9c50abc232", "mime": "image/jpeg", "name": "thumbnail_desperados-iii-demo.jpg", "path": null, "size": 36.58, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_desperados_iii_demo_9c50abc232", "resource_type": "image"}}} desperados_iii_demo_9c50abc232 .jpg image/jpeg 815.52 https://res.cloudinary.com/won-games/image/upload/v1621523097/desperados_iii_demo_9c50abc232.jpg \N cloudinary {"public_id": "desperados_iii_demo_9c50abc232", "resource_type": "image"} \N \N 2021-05-20 12:05:00.654-03 2021-05-20 12:05:00.654-03 523 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 13.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed .jpg image/jpeg 1949.50 https://res.cloudinary.com/won-games/image/upload/v1621523097/mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_19c5e1feed", "resource_type": "image"} \N \N 2021-05-20 12:05:00.74-03 2021-05-20 12:05:00.74-03 524 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 12.45, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6 .jpg image/jpeg 1819.73 https://res.cloudinary.com/won-games/image/upload/v1621523097/mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_bf493784a6", "resource_type": "image"} \N \N 2021-05-20 12:05:00.873-03 2021-05-20 12:05:00.873-03 525 kingdom-come-deliverance-hd-voice-pack-french.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c91d76997f.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c91d76997f", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-french.jpg", "path": null, "size": 10.58, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_french_c91d76997f", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_french_c91d76997f .jpg image/jpeg 520.19 https://res.cloudinary.com/won-games/image/upload/v1621523097/kingdom_come_deliverance_hd_voice_pack_french_c91d76997f.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_french_c91d76997f", "resource_type": "image"} \N \N 2021-05-20 12:05:00.894-03 2021-05-20 12:05:00.894-03 527 kingdom-come-deliverance-hd-sound-pack.jpg \N \N 1920 1033 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_sound_pack_11807c1d4e.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_sound_pack_11807c1d4e", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-sound-pack.jpg", "path": null, "size": 37.36, "width": 245, "height": 132, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_sound_pack_11807c1d4e", "resource_type": "image"}}} kingdom_come_deliverance_hd_sound_pack_11807c1d4e .jpg image/jpeg 636.40 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_sound_pack_11807c1d4e.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_sound_pack_11807c1d4e", "resource_type": "image"} \N \N 2021-05-20 12:05:01.005-03 2021-05-20 12:05:01.005-03 531 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_megadimension_neptunia_viir_free_dlc_pack_5b29236866.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_5b29236866", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 8.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_5b29236866", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_5b29236866 .jpg image/jpeg 381.08 https://res.cloudinary.com/won-games/image/upload/v1621523097/megadimension_neptunia_viir_free_dlc_pack_5b29236866.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_5b29236866", "resource_type": "image"} \N \N 2021-05-20 12:05:01.068-03 2021-05-20 12:05:01.068-03 528 darkest-dungeon-musketeer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_darkest_dungeon_musketeer_45fe9138b5.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_45fe9138b5", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 8.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_45fe9138b5", "resource_type": "image"}}} darkest_dungeon_musketeer_45fe9138b5 .jpg image/jpeg 487.30 https://res.cloudinary.com/won-games/image/upload/v1621523097/darkest_dungeon_musketeer_45fe9138b5.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_45fe9138b5", "resource_type": "image"} \N \N 2021-05-20 12:05:01.013-03 2021-05-20 12:05:01.013-03 529 darkest-dungeon-musketeer.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_darkest_dungeon_musketeer_4e53b3482b.jpg", "hash": "thumbnail_darkest_dungeon_musketeer_4e53b3482b", "mime": "image/jpeg", "name": "thumbnail_darkest-dungeon-musketeer.jpg", "path": null, "size": 8.08, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_darkest_dungeon_musketeer_4e53b3482b", "resource_type": "image"}}} darkest_dungeon_musketeer_4e53b3482b .jpg image/jpeg 419.34 https://res.cloudinary.com/won-games/image/upload/v1621523098/darkest_dungeon_musketeer_4e53b3482b.jpg \N cloudinary {"public_id": "darkest_dungeon_musketeer_4e53b3482b", "resource_type": "image"} \N \N 2021-05-20 12:05:01.059-03 2021-05-20 12:05:01.059-03 532 steel-division-2-reinforcement-pack-6-auto-deployment.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523099/thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-6-auto-deployment.jpg", "path": null, "size": 9.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9", "resource_type": "image"}}} steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9 .jpg image/jpeg 2118.14 https://res.cloudinary.com/won-games/image/upload/v1621523097/steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_6_auto_deployment_85166a99e9", "resource_type": "image"} \N \N 2021-05-20 12:05:01.079-03 2021-05-20 12:05:01.079-03 533 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 10.04, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8 .jpg image/jpeg 448.15 https://res.cloudinary.com/won-games/image/upload/v1621523098/megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_c226a1d0c8", "resource_type": "image"} \N \N 2021-05-20 12:05:01.12-03 2021-05-20 12:05:01.12-03 534 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_megadimension_neptunia_viir_free_dlc_pack_25cde3edad.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_25cde3edad", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 7.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_25cde3edad", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_25cde3edad .jpg image/jpeg 360.60 https://res.cloudinary.com/won-games/image/upload/v1621523098/megadimension_neptunia_viir_free_dlc_pack_25cde3edad.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_25cde3edad", "resource_type": "image"} \N \N 2021-05-20 12:05:01.208-03 2021-05-20 12:05:01.208-03 537 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_7a26289948.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_7a26289948", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 6.49, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_7a26289948", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_7a26289948 .jpg image/jpeg 213.78 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_voice_pack_german_7a26289948.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_7a26289948", "resource_type": "image"} \N \N 2021-05-20 12:05:01.252-03 2021-05-20 12:05:01.252-03 538 ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224.jpg", "hash": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224", "mime": "image/jpeg", "name": "thumbnail_ys-viii-lacrimosa-of-dana-hq-texture-pack.jpg", "path": null, "size": 11.15, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224", "resource_type": "image"}}} ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224 .jpg image/jpeg 971.45 https://res.cloudinary.com/won-games/image/upload/v1621523097/ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224.jpg \N cloudinary {"public_id": "ys_viii_lacrimosa_of_dana_hq_texture_pack_8733743224", "resource_type": "image"} \N \N 2021-05-20 12:05:01.44-03 2021-05-20 12:05:01.44-03 539 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_texture_pack_985e857fb6.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_985e857fb6", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 10.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_985e857fb6", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_985e857fb6 .jpg image/jpeg 606.52 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_texture_pack_985e857fb6.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_985e857fb6", "resource_type": "image"} \N \N 2021-05-20 12:05:01.469-03 2021-05-20 12:05:01.469-03 540 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 10.41, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0 .jpg image/jpeg 458.08 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_f10d6f6fe0", "resource_type": "image"} \N \N 2021-05-20 12:05:01.513-03 2021-05-20 12:05:01.513-03 543 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_texture_pack_86282c0c78.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_86282c0c78", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 8.09, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_86282c0c78", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_86282c0c78 .jpg image/jpeg 542.75 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_texture_pack_86282c0c78.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_86282c0c78", "resource_type": "image"} \N \N 2021-05-20 12:05:01.627-03 2021-05-20 12:05:01.627-03 544 kingdom-come-deliverance-hd-texture-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_texture_pack_ea825e8e9e.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_texture_pack_ea825e8e9e", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-texture-pack.jpg", "path": null, "size": 8.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_texture_pack_ea825e8e9e", "resource_type": "image"}}} kingdom_come_deliverance_hd_texture_pack_ea825e8e9e .jpg image/jpeg 669.18 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_texture_pack_ea825e8e9e.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_texture_pack_ea825e8e9e", "resource_type": "image"} \N \N 2021-05-20 12:05:01.718-03 2021-05-20 12:05:01.718-03 545 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 12.84, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7 .jpg image/jpeg 1623.97 https://res.cloudinary.com/won-games/image/upload/v1621523098/mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_8aa50ab4e7", "resource_type": "image"} \N \N 2021-05-20 12:05:01.787-03 2021-05-20 12:05:01.787-03 546 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_ed654f292a.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_ed654f292a", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 8.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_ed654f292a", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_ed654f292a .jpg image/jpeg 442.40 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_voice_pack_german_ed654f292a.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_ed654f292a", "resource_type": "image"} \N \N 2021-05-20 12:05:01.906-03 2021-05-20 12:05:01.906-03 547 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 6.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9 .jpg image/jpeg 244.76 https://res.cloudinary.com/won-games/image/upload/v1621523098/kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_184f46e4c9", "resource_type": "image"} \N \N 2021-05-20 12:05:02.039-03 2021-05-20 12:05:02.039-03 548 kingdom-come-deliverance-hd-sound-pack.jpg \N \N 1920 1033 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_sound_pack_4f7a05ef58.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_sound_pack_4f7a05ef58", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-sound-pack.jpg", "path": null, "size": 39.21, "width": 245, "height": 132, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_sound_pack_4f7a05ef58", "resource_type": "image"}}} kingdom_come_deliverance_hd_sound_pack_4f7a05ef58 .jpg image/jpeg 958.65 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_sound_pack_4f7a05ef58.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_sound_pack_4f7a05ef58", "resource_type": "image"} \N \N 2021-05-20 12:05:02.063-03 2021-05-20 12:05:02.063-03 549 kingdom-come-deliverance-hd-voice-pack-german.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-voice-pack-german.jpg", "path": null, "size": 10.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888", "resource_type": "image"}}} kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888 .jpg image/jpeg 497.60 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_voice_pack_german_cdf9a50888", "resource_type": "image"} \N \N 2021-05-20 12:05:02.511-03 2021-05-20 12:05:02.511-03 541 kingdom-come-deliverance-hd-sound-pack.jpg \N \N 1920 1033 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_kingdom_come_deliverance_hd_sound_pack_3324254278.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_sound_pack_3324254278", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-sound-pack.jpg", "path": null, "size": 35.92, "width": 245, "height": 132, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_sound_pack_3324254278", "resource_type": "image"}}} kingdom_come_deliverance_hd_sound_pack_3324254278 .jpg image/jpeg 768.79 https://res.cloudinary.com/won-games/image/upload/v1621523099/kingdom_come_deliverance_hd_sound_pack_3324254278.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_sound_pack_3324254278", "resource_type": "image"} \N \N 2021-05-20 12:05:01.519-03 2021-05-20 12:05:01.519-03 542 megadimension-neptunia-viir-free-dlc-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523100/thumbnail_megadimension_neptunia_viir_free_dlc_pack_e7436a00df.jpg", "hash": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_e7436a00df", "mime": "image/jpeg", "name": "thumbnail_megadimension-neptunia-viir-free-dlc-pack.jpg", "path": null, "size": 11.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_megadimension_neptunia_viir_free_dlc_pack_e7436a00df", "resource_type": "image"}}} megadimension_neptunia_viir_free_dlc_pack_e7436a00df .jpg image/jpeg 623.47 https://res.cloudinary.com/won-games/image/upload/v1621523099/megadimension_neptunia_viir_free_dlc_pack_e7436a00df.jpg \N cloudinary {"public_id": "megadimension_neptunia_viir_free_dlc_pack_e7436a00df", "resource_type": "image"} \N \N 2021-05-20 12:05:01.62-03 2021-05-20 12:05:01.62-03 550 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523101/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 13.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9 .jpg image/jpeg 1740.28 https://res.cloudinary.com/won-games/image/upload/v1621523100/mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_6c40e87dc9", "resource_type": "image"} \N \N 2021-05-20 12:05:03.054-03 2021-05-20 12:05:03.054-03 551 kingdom-come-deliverance-hd-sound-pack.jpg \N \N 1920 1033 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523102/thumbnail_kingdom_come_deliverance_hd_sound_pack_7261239c4b.jpg", "hash": "thumbnail_kingdom_come_deliverance_hd_sound_pack_7261239c4b", "mime": "image/jpeg", "name": "thumbnail_kingdom-come-deliverance-hd-sound-pack.jpg", "path": null, "size": 35.12, "width": 245, "height": 132, "provider_metadata": {"public_id": "thumbnail_kingdom_come_deliverance_hd_sound_pack_7261239c4b", "resource_type": "image"}}} kingdom_come_deliverance_hd_sound_pack_7261239c4b .jpg image/jpeg 879.40 https://res.cloudinary.com/won-games/image/upload/v1621523100/kingdom_come_deliverance_hd_sound_pack_7261239c4b.jpg \N cloudinary {"public_id": "kingdom_come_deliverance_hd_sound_pack_7261239c4b", "resource_type": "image"} \N \N 2021-05-20 12:05:03.472-03 2021-05-20 12:05:03.472-03 552 steel-division-2-reinforcement-pack-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523102/thumbnail_steel_division_2_reinforcement_pack_2_428e4b1c68.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_2_428e4b1c68", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-2.jpg", "path": null, "size": 8.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_2_428e4b1c68", "resource_type": "image"}}} steel_division_2_reinforcement_pack_2_428e4b1c68 .jpg image/jpeg 644.29 https://res.cloudinary.com/won-games/image/upload/v1621523100/steel_division_2_reinforcement_pack_2_428e4b1c68.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_2_428e4b1c68", "resource_type": "image"} \N \N 2021-05-20 12:05:03.505-03 2021-05-20 12:05:03.505-03 553 steel-division-2-reinforcement-pack-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523102/thumbnail_steel_division_2_reinforcement_pack_2_1b017a4f23.jpg", "hash": "thumbnail_steel_division_2_reinforcement_pack_2_1b017a4f23", "mime": "image/jpeg", "name": "thumbnail_steel-division-2-reinforcement-pack-2.jpg", "path": null, "size": 8.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_steel_division_2_reinforcement_pack_2_1b017a4f23", "resource_type": "image"}}} steel_division_2_reinforcement_pack_2_1b017a4f23 .jpg image/jpeg 863.26 https://res.cloudinary.com/won-games/image/upload/v1621523100/steel_division_2_reinforcement_pack_2_1b017a4f23.jpg \N cloudinary {"public_id": "steel_division_2_reinforcement_pack_2_1b017a4f23", "resource_type": "image"} \N \N 2021-05-20 12:05:04.222-03 2021-05-20 12:05:04.222-03 554 mutant-football-league-dynasty-edition-purple-oil-pack.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523103/thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe.jpg", "hash": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe", "mime": "image/jpeg", "name": "thumbnail_mutant-football-league-dynasty-edition-purple-oil-pack.jpg", "path": null, "size": 11.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe", "resource_type": "image"}}} mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe .jpg image/jpeg 1883.98 https://res.cloudinary.com/won-games/image/upload/v1621523100/mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe.jpg \N cloudinary {"public_id": "mutant_football_league_dynasty_edition_purple_oil_pack_abfb38d3fe", "resource_type": "image"} \N \N 2021-05-20 12:05:04.916-03 2021-05-20 12:05:04.916-03 555 minute-of-islands.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_minute_of_islands_e533375c7f.jpg", "hash": "thumbnail_minute_of_islands_e533375c7f", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 8.43, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_e533375c7f", "resource_type": "image"}}} minute_of_islands_e533375c7f .jpg image/jpeg 239.59 https://res.cloudinary.com/won-games/image/upload/v1621523186/minute_of_islands_e533375c7f.jpg \N cloudinary {"public_id": "minute_of_islands_e533375c7f", "resource_type": "image"} \N \N 2021-05-20 12:06:29.228-03 2021-05-20 12:06:29.228-03 556 rogue-shift.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_rogue_shift_86a9f2f6fb.jpg", "hash": "thumbnail_rogue_shift_86a9f2f6fb", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 8.41, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_rogue_shift_86a9f2f6fb", "resource_type": "image"}}} rogue_shift_86a9f2f6fb .jpg image/jpeg 403.76 https://res.cloudinary.com/won-games/image/upload/v1621523186/rogue_shift_86a9f2f6fb.jpg \N cloudinary {"public_id": "rogue_shift_86a9f2f6fb", "resource_type": "image"} \N \N 2021-05-20 12:06:29.476-03 2021-05-20 12:06:29.476-03 557 saint-kotar.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_saint_kotar_eee5f14a21.jpg", "hash": "thumbnail_saint_kotar_eee5f14a21", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 5.43, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_saint_kotar_eee5f14a21", "resource_type": "image"}}} saint_kotar_eee5f14a21 .jpg image/jpeg 204.58 https://res.cloudinary.com/won-games/image/upload/v1621523186/saint_kotar_eee5f14a21.jpg \N cloudinary {"public_id": "saint_kotar_eee5f14a21", "resource_type": "image"} \N \N 2021-05-20 12:06:29.669-03 2021-05-20 12:06:29.669-03 558 strangeland.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_strangeland_d0cf899a1d.jpg", "hash": "thumbnail_strangeland_d0cf899a1d", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 6.35, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_strangeland_d0cf899a1d", "resource_type": "image"}}} strangeland_d0cf899a1d .jpg image/jpeg 238.20 https://res.cloudinary.com/won-games/image/upload/v1621523186/strangeland_d0cf899a1d.jpg \N cloudinary {"public_id": "strangeland_d0cf899a1d", "resource_type": "image"} \N \N 2021-05-20 12:06:29.801-03 2021-05-20 12:06:29.801-03 559 black-skylands.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_black_skylands_948e9fa02a.jpg", "hash": "thumbnail_black_skylands_948e9fa02a", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 8.41, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_black_skylands_948e9fa02a", "resource_type": "image"}}} black_skylands_948e9fa02a .jpg image/jpeg 377.04 https://res.cloudinary.com/won-games/image/upload/v1621523187/black_skylands_948e9fa02a.jpg \N cloudinary {"public_id": "black_skylands_948e9fa02a", "resource_type": "image"} \N \N 2021-05-20 12:06:30.216-03 2021-05-20 12:06:30.216-03 560 gestalt-steam-cinder.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_gestalt_steam_cinder_a2aec101ac.jpg", "hash": "thumbnail_gestalt_steam_cinder_a2aec101ac", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 8.35, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_a2aec101ac", "resource_type": "image"}}} gestalt_steam_cinder_a2aec101ac .jpg image/jpeg 377.36 https://res.cloudinary.com/won-games/image/upload/v1621523187/gestalt_steam_cinder_a2aec101ac.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_a2aec101ac", "resource_type": "image"} \N \N 2021-05-20 12:06:30.264-03 2021-05-20 12:06:30.264-03 561 pharaoh-a-new-era.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_pharaoh_a_new_era_28beb9c4fc.jpg", "hash": "thumbnail_pharaoh_a_new_era_28beb9c4fc", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 7.32, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_28beb9c4fc", "resource_type": "image"}}} pharaoh_a_new_era_28beb9c4fc .jpg image/jpeg 251.21 https://res.cloudinary.com/won-games/image/upload/v1621523186/pharaoh_a_new_era_28beb9c4fc.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_28beb9c4fc", "resource_type": "image"} \N \N 2021-05-20 12:06:30.414-03 2021-05-20 12:06:30.414-03 562 intravenous.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_intravenous_71a1427a0f.jpg", "hash": "thumbnail_intravenous_71a1427a0f", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 7.58, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_intravenous_71a1427a0f", "resource_type": "image"}}} intravenous_71a1427a0f .jpg image/jpeg 234.46 https://res.cloudinary.com/won-games/image/upload/v1621523187/intravenous_71a1427a0f.jpg \N cloudinary {"public_id": "intravenous_71a1427a0f", "resource_type": "image"} \N \N 2021-05-20 12:06:30.548-03 2021-05-20 12:06:30.548-03 563 unbound-worlds-apart.jpg \N \N 1572 727 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523188/thumbnail_unbound_worlds_apart_65901fdc7a.jpg", "hash": "thumbnail_unbound_worlds_apart_65901fdc7a", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 6.32, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_65901fdc7a", "resource_type": "image"}}} unbound_worlds_apart_65901fdc7a .jpg image/jpeg 224.77 https://res.cloudinary.com/won-games/image/upload/v1621523186/unbound_worlds_apart_65901fdc7a.jpg \N cloudinary {"public_id": "unbound_worlds_apart_65901fdc7a", "resource_type": "image"} \N \N 2021-05-20 12:06:30.586-03 2021-05-20 12:06:30.586-03 564 figment-creed-valley.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_figment_creed_valley_70819bbd0c.jpg", "hash": "thumbnail_figment_creed_valley_70819bbd0c", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 8.35, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_70819bbd0c", "resource_type": "image"}}} figment_creed_valley_70819bbd0c .jpg image/jpeg 305.71 https://res.cloudinary.com/won-games/image/upload/v1621523186/figment_creed_valley_70819bbd0c.jpg \N cloudinary {"public_id": "figment_creed_valley_70819bbd0c", "resource_type": "image"} \N \N 2021-05-20 12:06:30.75-03 2021-05-20 12:06:30.75-03 565 cold-hearts.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_cold_hearts_3e0278a7fe.jpg", "hash": "thumbnail_cold_hearts_3e0278a7fe", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 7.24, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_cold_hearts_3e0278a7fe", "resource_type": "image"}}} cold_hearts_3e0278a7fe .jpg image/jpeg 261.00 https://res.cloudinary.com/won-games/image/upload/v1621523187/cold_hearts_3e0278a7fe.jpg \N cloudinary {"public_id": "cold_hearts_3e0278a7fe", "resource_type": "image"} \N \N 2021-05-20 12:06:30.762-03 2021-05-20 12:06:30.762-03 566 brave-earth-prologue.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_brave_earth_prologue_71a3918ea9.jpg", "hash": "thumbnail_brave_earth_prologue_71a3918ea9", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 6.71, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_71a3918ea9", "resource_type": "image"}}} brave_earth_prologue_71a3918ea9 .jpg image/jpeg 265.81 https://res.cloudinary.com/won-games/image/upload/v1621523187/brave_earth_prologue_71a3918ea9.jpg \N cloudinary {"public_id": "brave_earth_prologue_71a3918ea9", "resource_type": "image"} \N \N 2021-05-20 12:06:30.77-03 2021-05-20 12:06:30.77-03 567 almighty-kill-your-gods.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_almighty_kill_your_gods_edd6e8c71a.jpg", "hash": "thumbnail_almighty_kill_your_gods_edd6e8c71a", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 7.13, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_edd6e8c71a", "resource_type": "image"}}} almighty_kill_your_gods_edd6e8c71a .jpg image/jpeg 275.16 https://res.cloudinary.com/won-games/image/upload/v1621523187/almighty_kill_your_gods_edd6e8c71a.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_edd6e8c71a", "resource_type": "image"} \N \N 2021-05-20 12:06:30.804-03 2021-05-20 12:06:30.804-03 568 time-loader.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_time_loader_dfedd3f065.jpg", "hash": "thumbnail_time_loader_dfedd3f065", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 8.07, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_time_loader_dfedd3f065", "resource_type": "image"}}} time_loader_dfedd3f065 .jpg image/jpeg 312.22 https://res.cloudinary.com/won-games/image/upload/v1621523187/time_loader_dfedd3f065.jpg \N cloudinary {"public_id": "time_loader_dfedd3f065", "resource_type": "image"} \N \N 2021-05-20 12:06:30.832-03 2021-05-20 12:06:30.832-03 570 against-the-storm.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_against_the_storm_0caf23493d.jpg", "hash": "thumbnail_against_the_storm_0caf23493d", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 6.88, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_against_the_storm_0caf23493d", "resource_type": "image"}}} against_the_storm_0caf23493d .jpg image/jpeg 313.31 https://res.cloudinary.com/won-games/image/upload/v1621523187/against_the_storm_0caf23493d.jpg \N cloudinary {"public_id": "against_the_storm_0caf23493d", "resource_type": "image"} \N \N 2021-05-20 12:06:30.897-03 2021-05-20 12:06:30.897-03 571 unmetal.jpg \N \N 1572 727 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_unmetal_996d71af61.jpg", "hash": "thumbnail_unmetal_996d71af61", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 4.66, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_unmetal_996d71af61", "resource_type": "image"}}} unmetal_996d71af61 .jpg image/jpeg 132.39 https://res.cloudinary.com/won-games/image/upload/v1621523186/unmetal_996d71af61.jpg \N cloudinary {"public_id": "unmetal_996d71af61", "resource_type": "image"} \N \N 2021-05-20 12:06:30.964-03 2021-05-20 12:06:30.964-03 573 farlanders.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_farlanders_57b4e2dc62.jpg", "hash": "thumbnail_farlanders_57b4e2dc62", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 7.27, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_farlanders_57b4e2dc62", "resource_type": "image"}}} farlanders_57b4e2dc62 .jpg image/jpeg 299.84 https://res.cloudinary.com/won-games/image/upload/v1621523187/farlanders_57b4e2dc62.jpg \N cloudinary {"public_id": "farlanders_57b4e2dc62", "resource_type": "image"} \N \N 2021-05-20 12:06:31.11-03 2021-05-20 12:06:31.11-03 574 system-shock.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_system_shock_1646566a87.jpg", "hash": "thumbnail_system_shock_1646566a87", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 5.7, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_system_shock_1646566a87", "resource_type": "image"}}} system_shock_1646566a87 .jpg image/jpeg 239.29 https://res.cloudinary.com/won-games/image/upload/v1621523186/system_shock_1646566a87.jpg \N cloudinary {"public_id": "system_shock_1646566a87", "resource_type": "image"} \N \N 2021-05-20 12:06:31.169-03 2021-05-20 12:06:31.169-03 575 xenonauts-2.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_xenonauts_2_e75ed94711.jpg", "hash": "thumbnail_xenonauts_2_e75ed94711", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 4.01, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_e75ed94711", "resource_type": "image"}}} xenonauts_2_e75ed94711 .jpg image/jpeg 313.59 https://res.cloudinary.com/won-games/image/upload/v1621523188/xenonauts_2_e75ed94711.jpg \N cloudinary {"public_id": "xenonauts_2_e75ed94711", "resource_type": "image"} \N \N 2021-05-20 12:06:31.265-03 2021-05-20 12:06:31.265-03 579 potion-craft-alchemist-simulator.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_potion_craft_alchemist_simulator_223e55dae5.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_223e55dae5", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 8.62, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_223e55dae5", "resource_type": "image"}}} potion_craft_alchemist_simulator_223e55dae5 .jpg image/jpeg 625.63 https://res.cloudinary.com/won-games/image/upload/v1621523188/potion_craft_alchemist_simulator_223e55dae5.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_223e55dae5", "resource_type": "image"} \N \N 2021-05-20 12:06:31.411-03 2021-05-20 12:06:31.411-03 585 guild-of-ascension.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_guild_of_ascension_87c44e91b5.jpg", "hash": "thumbnail_guild_of_ascension_87c44e91b5", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 10.57, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_87c44e91b5", "resource_type": "image"}}} guild_of_ascension_87c44e91b5 .jpg image/jpeg 447.98 https://res.cloudinary.com/won-games/image/upload/v1621523188/guild_of_ascension_87c44e91b5.jpg \N cloudinary {"public_id": "guild_of_ascension_87c44e91b5", "resource_type": "image"} \N \N 2021-05-20 12:06:31.635-03 2021-05-20 12:06:31.635-03 677 no-longer-home.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_no_longer_home_f788b6ed9e.jpg", "hash": "thumbnail_no_longer_home_f788b6ed9e", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 7.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_no_longer_home_f788b6ed9e", "resource_type": "image"}}} no_longer_home_f788b6ed9e .jpg image/jpeg 240.62 https://res.cloudinary.com/won-games/image/upload/v1621523200/no_longer_home_f788b6ed9e.jpg \N cloudinary {"public_id": "no_longer_home_f788b6ed9e", "resource_type": "image"} \N \N 2021-05-20 12:06:51.412-03 2021-05-20 12:06:51.412-03 678 hoa.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_hoa_f2302c9622.jpg", "hash": "thumbnail_hoa_f2302c9622", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 8.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hoa_f2302c9622", "resource_type": "image"}}} hoa_f2302c9622 .jpg image/jpeg 229.27 https://res.cloudinary.com/won-games/image/upload/v1621523201/hoa_f2302c9622.jpg \N cloudinary {"public_id": "hoa_f2302c9622", "resource_type": "image"} \N \N 2021-05-20 12:06:51.465-03 2021-05-20 12:06:51.465-03 679 no-longer-home.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_no_longer_home_7e5ce6ab71.jpg", "hash": "thumbnail_no_longer_home_7e5ce6ab71", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 6.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_no_longer_home_7e5ce6ab71", "resource_type": "image"}}} no_longer_home_7e5ce6ab71 .jpg image/jpeg 185.10 https://res.cloudinary.com/won-games/image/upload/v1621523202/no_longer_home_7e5ce6ab71.jpg \N cloudinary {"public_id": "no_longer_home_7e5ce6ab71", "resource_type": "image"} \N \N 2021-05-20 12:06:51.547-03 2021-05-20 12:06:51.547-03 572 a-jugglers-tale.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_a_jugglers_tale_7127a4c245.jpg", "hash": "thumbnail_a_jugglers_tale_7127a4c245", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 8.82, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_7127a4c245", "resource_type": "image"}}} a_jugglers_tale_7127a4c245 .jpg image/jpeg 421.95 https://res.cloudinary.com/won-games/image/upload/v1621523188/a_jugglers_tale_7127a4c245.jpg \N cloudinary {"public_id": "a_jugglers_tale_7127a4c245", "resource_type": "image"} \N \N 2021-05-20 12:06:31.109-03 2021-05-20 12:06:31.109-03 576 king-of-seas.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_king_of_seas_1b66e2ef9c.jpg", "hash": "thumbnail_king_of_seas_1b66e2ef9c", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 8.88, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_king_of_seas_1b66e2ef9c", "resource_type": "image"}}} king_of_seas_1b66e2ef9c .jpg image/jpeg 404.70 https://res.cloudinary.com/won-games/image/upload/v1621523187/king_of_seas_1b66e2ef9c.jpg \N cloudinary {"public_id": "king_of_seas_1b66e2ef9c", "resource_type": "image"} \N \N 2021-05-20 12:06:31.277-03 2021-05-20 12:06:31.277-03 577 whateverland.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_whateverland_359ecc0a2d.jpg", "hash": "thumbnail_whateverland_359ecc0a2d", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 9.07, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_whateverland_359ecc0a2d", "resource_type": "image"}}} whateverland_359ecc0a2d .jpg image/jpeg 381.51 https://res.cloudinary.com/won-games/image/upload/v1621523187/whateverland_359ecc0a2d.jpg \N cloudinary {"public_id": "whateverland_359ecc0a2d", "resource_type": "image"} \N \N 2021-05-20 12:06:31.301-03 2021-05-20 12:06:31.301-03 578 vampire-the-masquerade-bloodlines-2.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_vampire_the_masquerade_bloodlines_2_ebe8656a7d.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_ebe8656a7d", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 8.13, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_ebe8656a7d", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_ebe8656a7d .jpg image/jpeg 431.37 https://res.cloudinary.com/won-games/image/upload/v1621523188/vampire_the_masquerade_bloodlines_2_ebe8656a7d.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_ebe8656a7d", "resource_type": "image"} \N \N 2021-05-20 12:06:31.407-03 2021-05-20 12:06:31.407-03 580 no-longer-home.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_no_longer_home_5841968213.jpg", "hash": "thumbnail_no_longer_home_5841968213", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 7.73, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_no_longer_home_5841968213", "resource_type": "image"}}} no_longer_home_5841968213 .jpg image/jpeg 293.36 https://res.cloudinary.com/won-games/image/upload/v1621523187/no_longer_home_5841968213.jpg \N cloudinary {"public_id": "no_longer_home_5841968213", "resource_type": "image"} \N \N 2021-05-20 12:06:31.432-03 2021-05-20 12:06:31.432-03 581 strategic-mind-fight-for-freedom.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_strategic_mind_fight_for_freedom_3686e1e6b6.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_3686e1e6b6", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 7.01, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_3686e1e6b6", "resource_type": "image"}}} strategic_mind_fight_for_freedom_3686e1e6b6 .jpg image/jpeg 298.77 https://res.cloudinary.com/won-games/image/upload/v1621523187/strategic_mind_fight_for_freedom_3686e1e6b6.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_3686e1e6b6", "resource_type": "image"} \N \N 2021-05-20 12:06:31.52-03 2021-05-20 12:06:31.52-03 582 gloomwood.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_gloomwood_dbde1275b0.jpg", "hash": "thumbnail_gloomwood_dbde1275b0", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 6.38, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_gloomwood_dbde1275b0", "resource_type": "image"}}} gloomwood_dbde1275b0 .jpg image/jpeg 323.93 https://res.cloudinary.com/won-games/image/upload/v1621523188/gloomwood_dbde1275b0.jpg \N cloudinary {"public_id": "gloomwood_dbde1275b0", "resource_type": "image"} \N \N 2021-05-20 12:06:31.605-03 2021-05-20 12:06:31.605-03 583 hoa.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_hoa_587a7c8b0a.jpg", "hash": "thumbnail_hoa_587a7c8b0a", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 6.57, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_hoa_587a7c8b0a", "resource_type": "image"}}} hoa_587a7c8b0a .jpg image/jpeg 421.46 https://res.cloudinary.com/won-games/image/upload/v1621523188/hoa_587a7c8b0a.jpg \N cloudinary {"public_id": "hoa_587a7c8b0a", "resource_type": "image"} \N \N 2021-05-20 12:06:31.624-03 2021-05-20 12:06:31.624-03 584 recompile.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_recompile_8c0480acbd.jpg", "hash": "thumbnail_recompile_8c0480acbd", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 7.2, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_recompile_8c0480acbd", "resource_type": "image"}}} recompile_8c0480acbd .jpg image/jpeg 375.91 https://res.cloudinary.com/won-games/image/upload/v1621523188/recompile_8c0480acbd.jpg \N cloudinary {"public_id": "recompile_8c0480acbd", "resource_type": "image"} \N \N 2021-05-20 12:06:31.635-03 2021-05-20 12:06:31.635-03 586 the-forgotten-city.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_the_forgotten_city_46d5fc9fa0.jpg", "hash": "thumbnail_the_forgotten_city_46d5fc9fa0", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 9.06, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_46d5fc9fa0", "resource_type": "image"}}} the_forgotten_city_46d5fc9fa0 .jpg image/jpeg 446.45 https://res.cloudinary.com/won-games/image/upload/v1621523187/the_forgotten_city_46d5fc9fa0.jpg \N cloudinary {"public_id": "the_forgotten_city_46d5fc9fa0", "resource_type": "image"} \N \N 2021-05-20 12:06:31.655-03 2021-05-20 12:06:31.655-03 587 eldest-souls.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_eldest_souls_8619f1334c.jpg", "hash": "thumbnail_eldest_souls_8619f1334c", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 8.11, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_eldest_souls_8619f1334c", "resource_type": "image"}}} eldest_souls_8619f1334c .jpg image/jpeg 377.28 https://res.cloudinary.com/won-games/image/upload/v1621523187/eldest_souls_8619f1334c.jpg \N cloudinary {"public_id": "eldest_souls_8619f1334c", "resource_type": "image"} \N \N 2021-05-20 12:06:31.696-03 2021-05-20 12:06:31.696-03 588 asylum.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523189/thumbnail_asylum_c713362eff.jpg", "hash": "thumbnail_asylum_c713362eff", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 4.59, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_asylum_c713362eff", "resource_type": "image"}}} asylum_c713362eff .jpg image/jpeg 357.10 https://res.cloudinary.com/won-games/image/upload/v1621523188/asylum_c713362eff.jpg \N cloudinary {"public_id": "asylum_c713362eff", "resource_type": "image"} \N \N 2021-05-20 12:06:31.886-03 2021-05-20 12:06:31.886-03 589 dark-envoy.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_dark_envoy_4c615ccb2a.jpg", "hash": "thumbnail_dark_envoy_4c615ccb2a", "mime": "image/jpeg", "name": "thumbnail_dark-envoy.jpg", "path": null, "size": 7.78, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_dark_envoy_4c615ccb2a", "resource_type": "image"}}} dark_envoy_4c615ccb2a .jpg image/jpeg 373.27 https://res.cloudinary.com/won-games/image/upload/v1621523188/dark_envoy_4c615ccb2a.jpg \N cloudinary {"public_id": "dark_envoy_4c615ccb2a", "resource_type": "image"} \N \N 2021-05-20 12:06:31.965-03 2021-05-20 12:06:31.965-03 590 curved-space.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_curved_space_4996ab8294.jpg", "hash": "thumbnail_curved_space_4996ab8294", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 9.54, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_curved_space_4996ab8294", "resource_type": "image"}}} curved_space_4996ab8294 .jpg image/jpeg 438.07 https://res.cloudinary.com/won-games/image/upload/v1621523188/curved_space_4996ab8294.jpg \N cloudinary {"public_id": "curved_space_4996ab8294", "resource_type": "image"} \N \N 2021-05-20 12:06:32.324-03 2021-05-20 12:06:32.324-03 591 master-of-magic.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523191/thumbnail_master_of_magic_9f1eaa9e62.jpg", "hash": "thumbnail_master_of_magic_9f1eaa9e62", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 5.86, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_master_of_magic_9f1eaa9e62", "resource_type": "image"}}} master_of_magic_9f1eaa9e62 .jpg image/jpeg 518.20 https://res.cloudinary.com/won-games/image/upload/v1621523188/master_of_magic_9f1eaa9e62.jpg \N cloudinary {"public_id": "master_of_magic_9f1eaa9e62", "resource_type": "image"} \N \N 2021-05-20 12:06:33.066-03 2021-05-20 12:06:33.066-03 592 brok-the-investigator.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523191/thumbnail_brok_the_investigator_3fd76414a9.jpg", "hash": "thumbnail_brok_the_investigator_3fd76414a9", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 10.33, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_3fd76414a9", "resource_type": "image"}}} brok_the_investigator_3fd76414a9 .jpg image/jpeg 562.04 https://res.cloudinary.com/won-games/image/upload/v1621523189/brok_the_investigator_3fd76414a9.jpg \N cloudinary {"public_id": "brok_the_investigator_3fd76414a9", "resource_type": "image"} \N \N 2021-05-20 12:06:33.346-03 2021-05-20 12:06:33.346-03 594 realms-beyond-ashes-of-the-fallen.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523191/thumbnail_realms_beyond_ashes_of_the_fallen_7f8bcced94.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_7f8bcced94", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 9.2, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_7f8bcced94", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_7f8bcced94 .jpg image/jpeg 508.96 https://res.cloudinary.com/won-games/image/upload/v1621523189/realms_beyond_ashes_of_the_fallen_7f8bcced94.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_7f8bcced94", "resource_type": "image"} \N \N 2021-05-20 12:06:33.629-03 2021-05-20 12:06:33.629-03 595 warhammer-40000-battlesector.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523190/thumbnail_warhammer_40000_battlesector_5789be2c1f.jpg", "hash": "thumbnail_warhammer_40000_battlesector_5789be2c1f", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 9.31, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_5789be2c1f", "resource_type": "image"}}} warhammer_40000_battlesector_5789be2c1f .jpg image/jpeg 441.50 https://res.cloudinary.com/won-games/image/upload/v1621523188/warhammer_40000_battlesector_5789be2c1f.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_5789be2c1f", "resource_type": "image"} \N \N 2021-05-20 12:06:33.66-03 2021-05-20 12:06:33.66-03 600 minute-of-islands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523193/thumbnail_minute_of_islands_c56635c665.jpg", "hash": "thumbnail_minute_of_islands_c56635c665", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 7.21, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_c56635c665", "resource_type": "image"}}} minute_of_islands_c56635c665 .jpg image/jpeg 166.22 https://res.cloudinary.com/won-games/image/upload/v1621523191/minute_of_islands_c56635c665.jpg \N cloudinary {"public_id": "minute_of_islands_c56635c665", "resource_type": "image"} \N \N 2021-05-20 12:06:34.971-03 2021-05-20 12:06:34.971-03 601 minute-of-islands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523196/thumbnail_minute_of_islands_179887744f.jpg", "hash": "thumbnail_minute_of_islands_179887744f", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 8.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_179887744f", "resource_type": "image"}}} minute_of_islands_179887744f .jpg image/jpeg 155.42 https://res.cloudinary.com/won-games/image/upload/v1621523191/minute_of_islands_179887744f.jpg \N cloudinary {"public_id": "minute_of_islands_179887744f", "resource_type": "image"} \N \N 2021-05-20 12:06:37.854-03 2021-05-20 12:06:37.854-03 593 astria-ascending.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523191/thumbnail_astria_ascending_77db8f96e1.jpg", "hash": "thumbnail_astria_ascending_77db8f96e1", "mime": "image/jpeg", "name": "thumbnail_astria-ascending.jpg", "path": null, "size": 8.44, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_astria_ascending_77db8f96e1", "resource_type": "image"}}} astria_ascending_77db8f96e1 .jpg image/jpeg 434.77 https://res.cloudinary.com/won-games/image/upload/v1621523189/astria_ascending_77db8f96e1.jpg \N cloudinary {"public_id": "astria_ascending_77db8f96e1", "resource_type": "image"} \N \N 2021-05-20 12:06:33.355-03 2021-05-20 12:06:33.355-03 596 astalon-tears-of-the-earth.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523192/thumbnail_astalon_tears_of_the_earth_8c0431052e.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_8c0431052e", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 10.75, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_8c0431052e", "resource_type": "image"}}} astalon_tears_of_the_earth_8c0431052e .jpg image/jpeg 472.12 https://res.cloudinary.com/won-games/image/upload/v1621523189/astalon_tears_of_the_earth_8c0431052e.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_8c0431052e", "resource_type": "image"} \N \N 2021-05-20 12:06:33.947-03 2021-05-20 12:06:33.947-03 597 resort.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523191/thumbnail_resort_5600ccd60c.jpg", "hash": "thumbnail_resort_5600ccd60c", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 8.11, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_resort_5600ccd60c", "resource_type": "image"}}} resort_5600ccd60c .jpg image/jpeg 418.34 https://res.cloudinary.com/won-games/image/upload/v1621523188/resort_5600ccd60c.jpg \N cloudinary {"public_id": "resort_5600ccd60c", "resource_type": "image"} \N \N 2021-05-20 12:06:34.118-03 2021-05-20 12:06:34.118-03 598 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1600 740 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523192/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 9.26, "width": 245, "height": 113, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49 .jpg image/jpeg 616.34 https://res.cloudinary.com/won-games/image/upload/v1621523189/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_343e505b49", "resource_type": "image"} \N \N 2021-05-20 12:06:34.204-03 2021-05-20 12:06:34.204-03 599 minute-of-islands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523192/thumbnail_minute_of_islands_e27e07947d.jpg", "hash": "thumbnail_minute_of_islands_e27e07947d", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 5.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_e27e07947d", "resource_type": "image"}}} minute_of_islands_e27e07947d .jpg image/jpeg 139.69 https://res.cloudinary.com/won-games/image/upload/v1621523190/minute_of_islands_e27e07947d.jpg \N cloudinary {"public_id": "minute_of_islands_e27e07947d", "resource_type": "image"} \N \N 2021-05-20 12:06:34.293-03 2021-05-20 12:06:34.293-03 603 strangeland.jpg \N \N 1276 719 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523197/thumbnail_strangeland_0a25c864c4.jpg", "hash": "thumbnail_strangeland_0a25c864c4", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 6.84, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strangeland_0a25c864c4", "resource_type": "image"}}} strangeland_0a25c864c4 .jpg image/jpeg 177.95 https://res.cloudinary.com/won-games/image/upload/v1621523192/strangeland_0a25c864c4.jpg \N cloudinary {"public_id": "strangeland_0a25c864c4", "resource_type": "image"} \N \N 2021-05-20 12:06:38.711-03 2021-05-20 12:06:38.711-03 604 strangeland.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523197/thumbnail_strangeland_9e919965bf.jpg", "hash": "thumbnail_strangeland_9e919965bf", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 7.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strangeland_9e919965bf", "resource_type": "image"}}} strangeland_9e919965bf .jpg image/jpeg 177.74 https://res.cloudinary.com/won-games/image/upload/v1621523192/strangeland_9e919965bf.jpg \N cloudinary {"public_id": "strangeland_9e919965bf", "resource_type": "image"} \N \N 2021-05-20 12:06:38.843-03 2021-05-20 12:06:38.843-03 605 minute-of-islands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523199/thumbnail_minute_of_islands_3aa95f5af4.jpg", "hash": "thumbnail_minute_of_islands_3aa95f5af4", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 9.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_3aa95f5af4", "resource_type": "image"}}} minute_of_islands_3aa95f5af4 .jpg image/jpeg 219.09 https://res.cloudinary.com/won-games/image/upload/v1621523192/minute_of_islands_3aa95f5af4.jpg \N cloudinary {"public_id": "minute_of_islands_3aa95f5af4", "resource_type": "image"} \N \N 2021-05-20 12:06:40.31-03 2021-05-20 12:06:40.31-03 607 rogue-shift.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523200/thumbnail_rogue_shift_7617b94a5d.jpg", "hash": "thumbnail_rogue_shift_7617b94a5d", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 7.81, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_rogue_shift_7617b94a5d", "resource_type": "image"}}} rogue_shift_7617b94a5d .jpg image/jpeg 267.18 https://res.cloudinary.com/won-games/image/upload/v1621523193/rogue_shift_7617b94a5d.jpg \N cloudinary {"public_id": "rogue_shift_7617b94a5d", "resource_type": "image"} \N \N 2021-05-20 12:06:41.556-03 2021-05-20 12:06:41.556-03 610 gestalt-steam-cinder.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523201/thumbnail_gestalt_steam_cinder_794246d8b9.jpg", "hash": "thumbnail_gestalt_steam_cinder_794246d8b9", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 9.6, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_794246d8b9", "resource_type": "image"}}} gestalt_steam_cinder_794246d8b9 .jpg image/jpeg 719.11 https://res.cloudinary.com/won-games/image/upload/v1621523194/gestalt_steam_cinder_794246d8b9.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_794246d8b9", "resource_type": "image"} \N \N 2021-05-20 12:06:42.875-03 2021-05-20 12:06:42.875-03 606 minute-of-islands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523198/thumbnail_minute_of_islands_859d6f55e1.jpg", "hash": "thumbnail_minute_of_islands_859d6f55e1", "mime": "image/jpeg", "name": "thumbnail_minute-of-islands.jpg", "path": null, "size": 10.01, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_minute_of_islands_859d6f55e1", "resource_type": "image"}}} minute_of_islands_859d6f55e1 .jpg image/jpeg 228.34 https://res.cloudinary.com/won-games/image/upload/v1621523192/minute_of_islands_859d6f55e1.jpg \N cloudinary {"public_id": "minute_of_islands_859d6f55e1", "resource_type": "image"} \N \N 2021-05-20 12:06:40.454-03 2021-05-20 12:06:40.454-03 608 brave-earth-prologue.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523200/thumbnail_brave_earth_prologue_84e632e98c.jpg", "hash": "thumbnail_brave_earth_prologue_84e632e98c", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 8.32, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_84e632e98c", "resource_type": "image"}}} brave_earth_prologue_84e632e98c .jpg image/jpeg 121.22 https://res.cloudinary.com/won-games/image/upload/v1621523194/brave_earth_prologue_84e632e98c.jpg \N cloudinary {"public_id": "brave_earth_prologue_84e632e98c", "resource_type": "image"} \N \N 2021-05-20 12:06:42.053-03 2021-05-20 12:06:42.053-03 609 cold-hearts.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523201/thumbnail_cold_hearts_7d019a218f.jpg", "hash": "thumbnail_cold_hearts_7d019a218f", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 6.83, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cold_hearts_7d019a218f", "resource_type": "image"}}} cold_hearts_7d019a218f .jpg image/jpeg 175.14 https://res.cloudinary.com/won-games/image/upload/v1621523194/cold_hearts_7d019a218f.jpg \N cloudinary {"public_id": "cold_hearts_7d019a218f", "resource_type": "image"} \N \N 2021-05-20 12:06:42.863-03 2021-05-20 12:06:42.863-03 612 rogue-shift.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523203/thumbnail_rogue_shift_c8155d2fe6.jpg", "hash": "thumbnail_rogue_shift_c8155d2fe6", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 7.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_rogue_shift_c8155d2fe6", "resource_type": "image"}}} rogue_shift_c8155d2fe6 .jpg image/jpeg 281.12 https://res.cloudinary.com/won-games/image/upload/v1621523193/rogue_shift_c8155d2fe6.jpg \N cloudinary {"public_id": "rogue_shift_c8155d2fe6", "resource_type": "image"} \N \N 2021-05-20 12:06:44.538-03 2021-05-20 12:06:44.538-03 614 unmetal.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_unmetal_40cb015afd.jpg", "hash": "thumbnail_unmetal_40cb015afd", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 7.84, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unmetal_40cb015afd", "resource_type": "image"}}} unmetal_40cb015afd .jpg image/jpeg 207.06 https://res.cloudinary.com/won-games/image/upload/v1621523197/unmetal_40cb015afd.jpg \N cloudinary {"public_id": "unmetal_40cb015afd", "resource_type": "image"} \N \N 2021-05-20 12:06:44.996-03 2021-05-20 12:06:44.996-03 615 black-skylands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523203/thumbnail_black_skylands_356bc6529b.jpg", "hash": "thumbnail_black_skylands_356bc6529b", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 11.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_black_skylands_356bc6529b", "resource_type": "image"}}} black_skylands_356bc6529b .jpg image/jpeg 785.97 https://res.cloudinary.com/won-games/image/upload/v1621523196/black_skylands_356bc6529b.jpg \N cloudinary {"public_id": "black_skylands_356bc6529b", "resource_type": "image"} \N \N 2021-05-20 12:06:45.154-03 2021-05-20 12:06:45.154-03 616 king-of-seas.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_king_of_seas_bfe6fbd349.jpg", "hash": "thumbnail_king_of_seas_bfe6fbd349", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 8.57, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_king_of_seas_bfe6fbd349", "resource_type": "image"}}} king_of_seas_bfe6fbd349 .jpg image/jpeg 129.18 https://res.cloudinary.com/won-games/image/upload/v1621523197/king_of_seas_bfe6fbd349.jpg \N cloudinary {"public_id": "king_of_seas_bfe6fbd349", "resource_type": "image"} \N \N 2021-05-20 12:06:45.688-03 2021-05-20 12:06:45.688-03 618 king-of-seas.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_king_of_seas_89f1830ec3.jpg", "hash": "thumbnail_king_of_seas_89f1830ec3", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 5.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_king_of_seas_89f1830ec3", "resource_type": "image"}}} king_of_seas_89f1830ec3 .jpg image/jpeg 86.51 https://res.cloudinary.com/won-games/image/upload/v1621523197/king_of_seas_89f1830ec3.jpg \N cloudinary {"public_id": "king_of_seas_89f1830ec3", "resource_type": "image"} \N \N 2021-05-20 12:06:45.833-03 2021-05-20 12:06:45.833-03 629 against-the-storm.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_against_the_storm_5f384d9bab.jpg", "hash": "thumbnail_against_the_storm_5f384d9bab", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 9.57, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_against_the_storm_5f384d9bab", "resource_type": "image"}}} against_the_storm_5f384d9bab .jpg image/jpeg 276.61 https://res.cloudinary.com/won-games/image/upload/v1621523198/against_the_storm_5f384d9bab.jpg \N cloudinary {"public_id": "against_the_storm_5f384d9bab", "resource_type": "image"} \N \N 2021-05-20 12:06:47.874-03 2021-05-20 12:06:47.874-03 633 time-loader.jpg \N \N 2542 1308 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_time_loader_30946fbcdd.jpg", "hash": "thumbnail_time_loader_30946fbcdd", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 7.96, "width": 245, "height": 126, "provider_metadata": {"public_id": "thumbnail_time_loader_30946fbcdd", "resource_type": "image"}}} time_loader_30946fbcdd .jpg image/jpeg 299.95 https://res.cloudinary.com/won-games/image/upload/v1621523199/time_loader_30946fbcdd.jpg \N cloudinary {"public_id": "time_loader_30946fbcdd", "resource_type": "image"} \N \N 2021-05-20 12:06:48.128-03 2021-05-20 12:06:48.128-03 611 rogue-shift.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523202/thumbnail_rogue_shift_f2380a77c3.jpg", "hash": "thumbnail_rogue_shift_f2380a77c3", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 6.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_rogue_shift_f2380a77c3", "resource_type": "image"}}} rogue_shift_f2380a77c3 .jpg image/jpeg 377.16 https://res.cloudinary.com/won-games/image/upload/v1621523195/rogue_shift_f2380a77c3.jpg \N cloudinary {"public_id": "rogue_shift_f2380a77c3", "resource_type": "image"} \N \N 2021-05-20 12:06:43.193-03 2021-05-20 12:06:43.193-03 613 rogue-shift.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523202/thumbnail_rogue_shift_3624087d4d.jpg", "hash": "thumbnail_rogue_shift_3624087d4d", "mime": "image/jpeg", "name": "thumbnail_rogue-shift.jpg", "path": null, "size": 9.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_rogue_shift_3624087d4d", "resource_type": "image"}}} rogue_shift_3624087d4d .jpg image/jpeg 483.08 https://res.cloudinary.com/won-games/image/upload/v1621523195/rogue_shift_3624087d4d.jpg \N cloudinary {"public_id": "rogue_shift_3624087d4d", "resource_type": "image"} \N \N 2021-05-20 12:06:44.538-03 2021-05-20 12:06:44.538-03 617 whateverland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_whateverland_7b209b2f32.jpg", "hash": "thumbnail_whateverland_7b209b2f32", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 5.68, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_whateverland_7b209b2f32", "resource_type": "image"}}} whateverland_7b209b2f32 .jpg image/jpeg 110.57 https://res.cloudinary.com/won-games/image/upload/v1621523197/whateverland_7b209b2f32.jpg \N cloudinary {"public_id": "whateverland_7b209b2f32", "resource_type": "image"} \N \N 2021-05-20 12:06:45.833-03 2021-05-20 12:06:45.833-03 619 cold-hearts.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_cold_hearts_db26b2eeb1.jpg", "hash": "thumbnail_cold_hearts_db26b2eeb1", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 6.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cold_hearts_db26b2eeb1", "resource_type": "image"}}} cold_hearts_db26b2eeb1 .jpg image/jpeg 163.07 https://res.cloudinary.com/won-games/image/upload/v1621523197/cold_hearts_db26b2eeb1.jpg \N cloudinary {"public_id": "cold_hearts_db26b2eeb1", "resource_type": "image"} \N \N 2021-05-20 12:06:46.171-03 2021-05-20 12:06:46.171-03 620 strangeland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523205/thumbnail_strangeland_847149df4d.jpg", "hash": "thumbnail_strangeland_847149df4d", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 10.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strangeland_847149df4d", "resource_type": "image"}}} strangeland_847149df4d .jpg image/jpeg 561.73 https://res.cloudinary.com/won-games/image/upload/v1621523196/strangeland_847149df4d.jpg \N cloudinary {"public_id": "strangeland_847149df4d", "resource_type": "image"} \N \N 2021-05-20 12:06:46.2-03 2021-05-20 12:06:46.2-03 621 cold-hearts.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523204/thumbnail_cold_hearts_da3e93a769.jpg", "hash": "thumbnail_cold_hearts_da3e93a769", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 8.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cold_hearts_da3e93a769", "resource_type": "image"}}} cold_hearts_da3e93a769 .jpg image/jpeg 232.37 https://res.cloudinary.com/won-games/image/upload/v1621523197/cold_hearts_da3e93a769.jpg \N cloudinary {"public_id": "cold_hearts_da3e93a769", "resource_type": "image"} \N \N 2021-05-20 12:06:46.325-03 2021-05-20 12:06:46.325-03 622 whateverland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523205/thumbnail_whateverland_c0e0f87e02.jpg", "hash": "thumbnail_whateverland_c0e0f87e02", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 3.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_whateverland_c0e0f87e02", "resource_type": "image"}}} whateverland_c0e0f87e02 .jpg image/jpeg 119.08 https://res.cloudinary.com/won-games/image/upload/v1621523197/whateverland_c0e0f87e02.jpg \N cloudinary {"public_id": "whateverland_c0e0f87e02", "resource_type": "image"} \N \N 2021-05-20 12:06:46.697-03 2021-05-20 12:06:46.697-03 623 almighty-kill-your-gods.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_almighty_kill_your_gods_5c5b47e2ca.jpg", "hash": "thumbnail_almighty_kill_your_gods_5c5b47e2ca", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 8.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_5c5b47e2ca", "resource_type": "image"}}} almighty_kill_your_gods_5c5b47e2ca .jpg image/jpeg 545.60 https://res.cloudinary.com/won-games/image/upload/v1621523198/almighty_kill_your_gods_5c5b47e2ca.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_5c5b47e2ca", "resource_type": "image"} \N \N 2021-05-20 12:06:47.087-03 2021-05-20 12:06:47.087-03 624 pharaoh-a-new-era.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523205/thumbnail_pharaoh_a_new_era_ef6d8072e1.jpg", "hash": "thumbnail_pharaoh_a_new_era_ef6d8072e1", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 9.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_ef6d8072e1", "resource_type": "image"}}} pharaoh_a_new_era_ef6d8072e1 .jpg image/jpeg 289.88 https://res.cloudinary.com/won-games/image/upload/v1621523197/pharaoh_a_new_era_ef6d8072e1.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_ef6d8072e1", "resource_type": "image"} \N \N 2021-05-20 12:06:47.196-03 2021-05-20 12:06:47.196-03 625 brave-earth-prologue.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_brave_earth_prologue_0937d9f69c.jpg", "hash": "thumbnail_brave_earth_prologue_0937d9f69c", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 9.84, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_0937d9f69c", "resource_type": "image"}}} brave_earth_prologue_0937d9f69c .jpg image/jpeg 160.95 https://res.cloudinary.com/won-games/image/upload/v1621523197/brave_earth_prologue_0937d9f69c.jpg \N cloudinary {"public_id": "brave_earth_prologue_0937d9f69c", "resource_type": "image"} \N \N 2021-05-20 12:06:47.643-03 2021-05-20 12:06:47.643-03 626 time-loader.jpg \N \N 2560 1307 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_time_loader_0477c671aa.jpg", "hash": "thumbnail_time_loader_0477c671aa", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 4.92, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_time_loader_0477c671aa", "resource_type": "image"}}} time_loader_0477c671aa .jpg image/jpeg 210.43 https://res.cloudinary.com/won-games/image/upload/v1621523198/time_loader_0477c671aa.jpg \N cloudinary {"public_id": "time_loader_0477c671aa", "resource_type": "image"} \N \N 2021-05-20 12:06:47.743-03 2021-05-20 12:06:47.743-03 627 cold-hearts.jpg \N \N 1734 975 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_cold_hearts_66e47cc560.jpg", "hash": "thumbnail_cold_hearts_66e47cc560", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 7.79, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cold_hearts_66e47cc560", "resource_type": "image"}}} cold_hearts_66e47cc560 .jpg image/jpeg 168.52 https://res.cloudinary.com/won-games/image/upload/v1621523197/cold_hearts_66e47cc560.jpg \N cloudinary {"public_id": "cold_hearts_66e47cc560", "resource_type": "image"} \N \N 2021-05-20 12:06:47.802-03 2021-05-20 12:06:47.802-03 630 intravenous.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_intravenous_7e11ae7168.jpg", "hash": "thumbnail_intravenous_7e11ae7168", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 6.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_intravenous_7e11ae7168", "resource_type": "image"}}} intravenous_7e11ae7168 .jpg image/jpeg 290.80 https://res.cloudinary.com/won-games/image/upload/v1621523197/intravenous_7e11ae7168.jpg \N cloudinary {"public_id": "intravenous_7e11ae7168", "resource_type": "image"} \N \N 2021-05-20 12:06:47.91-03 2021-05-20 12:06:47.91-03 631 farlanders.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_farlanders_be2ea97006.jpg", "hash": "thumbnail_farlanders_be2ea97006", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 4.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_farlanders_be2ea97006", "resource_type": "image"}}} farlanders_be2ea97006 .jpg image/jpeg 219.02 https://res.cloudinary.com/won-games/image/upload/v1621523198/farlanders_be2ea97006.jpg \N cloudinary {"public_id": "farlanders_be2ea97006", "resource_type": "image"} \N \N 2021-05-20 12:06:48.003-03 2021-05-20 12:06:48.003-03 632 no-longer-home.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_no_longer_home_e0faa8abc3.jpg", "hash": "thumbnail_no_longer_home_e0faa8abc3", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 4.68, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_no_longer_home_e0faa8abc3", "resource_type": "image"}}} no_longer_home_e0faa8abc3 .jpg image/jpeg 124.51 https://res.cloudinary.com/won-games/image/upload/v1621523198/no_longer_home_e0faa8abc3.jpg \N cloudinary {"public_id": "no_longer_home_e0faa8abc3", "resource_type": "image"} \N \N 2021-05-20 12:06:48.127-03 2021-05-20 12:06:48.127-03 637 against-the-storm.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_against_the_storm_299f9e1308.jpg", "hash": "thumbnail_against_the_storm_299f9e1308", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 10.27, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_against_the_storm_299f9e1308", "resource_type": "image"}}} against_the_storm_299f9e1308 .jpg image/jpeg 275.51 https://res.cloudinary.com/won-games/image/upload/v1621523198/against_the_storm_299f9e1308.jpg \N cloudinary {"public_id": "against_the_storm_299f9e1308", "resource_type": "image"} \N \N 2021-05-20 12:06:48.369-03 2021-05-20 12:06:48.369-03 719 no-longer-home.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_no_longer_home_0b137f716d.jpg", "hash": "thumbnail_no_longer_home_0b137f716d", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 8.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_no_longer_home_0b137f716d", "resource_type": "image"}}} no_longer_home_0b137f716d .jpg image/jpeg 284.76 https://res.cloudinary.com/won-games/image/upload/v1621523203/no_longer_home_0b137f716d.jpg \N cloudinary {"public_id": "no_longer_home_0b137f716d", "resource_type": "image"} \N \N 2021-05-20 12:06:53.766-03 2021-05-20 12:06:53.766-03 778 saint-kotar.jpg \N \N 2100 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_saint_kotar_19c0e1e287.jpg", "hash": "thumbnail_saint_kotar_19c0e1e287", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 17.2, "width": 245, "height": 126, "provider_metadata": {"public_id": "thumbnail_saint_kotar_19c0e1e287", "resource_type": "image"}}} saint_kotar_19c0e1e287 .jpg image/jpeg 1273.64 https://res.cloudinary.com/won-games/image/upload/v1621523210/saint_kotar_19c0e1e287.jpg \N cloudinary {"public_id": "saint_kotar_19c0e1e287", "resource_type": "image"} \N \N 2021-05-20 12:06:55.13-03 2021-05-20 12:06:55.13-03 780 potion-craft-alchemist-simulator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_potion_craft_alchemist_simulator_99b85017a5.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_99b85017a5", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_99b85017a5", "resource_type": "image"}}} potion_craft_alchemist_simulator_99b85017a5 .jpg image/jpeg 891.21 https://res.cloudinary.com/won-games/image/upload/v1621523208/potion_craft_alchemist_simulator_99b85017a5.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_99b85017a5", "resource_type": "image"} \N \N 2021-05-20 12:06:55.178-03 2021-05-20 12:06:55.178-03 781 astalon-tears-of-the-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_astalon_tears_of_the_earth_76962d02e5.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_76962d02e5", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 11.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_76962d02e5", "resource_type": "image"}}} astalon_tears_of_the_earth_76962d02e5 .jpg image/jpeg 435.92 https://res.cloudinary.com/won-games/image/upload/v1621523211/astalon_tears_of_the_earth_76962d02e5.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_76962d02e5", "resource_type": "image"} \N \N 2021-05-20 12:06:55.201-03 2021-05-20 12:06:55.201-03 628 gestalt-steam-cinder.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_gestalt_steam_cinder_97eb1c97a6.jpg", "hash": "thumbnail_gestalt_steam_cinder_97eb1c97a6", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 10.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_97eb1c97a6", "resource_type": "image"}}} gestalt_steam_cinder_97eb1c97a6 .jpg image/jpeg 352.39 https://res.cloudinary.com/won-games/image/upload/v1621523197/gestalt_steam_cinder_97eb1c97a6.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_97eb1c97a6", "resource_type": "image"} \N \N 2021-05-20 12:06:47.874-03 2021-05-20 12:06:47.874-03 638 against-the-storm.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_against_the_storm_591038b95c.jpg", "hash": "thumbnail_against_the_storm_591038b95c", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 8.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_against_the_storm_591038b95c", "resource_type": "image"}}} against_the_storm_591038b95c .jpg image/jpeg 232.21 https://res.cloudinary.com/won-games/image/upload/v1621523198/against_the_storm_591038b95c.jpg \N cloudinary {"public_id": "against_the_storm_591038b95c", "resource_type": "image"} \N \N 2021-05-20 12:06:48.381-03 2021-05-20 12:06:48.381-03 639 unmetal.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_unmetal_271f2a5cdb.jpg", "hash": "thumbnail_unmetal_271f2a5cdb", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 7.03, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unmetal_271f2a5cdb", "resource_type": "image"}}} unmetal_271f2a5cdb .jpg image/jpeg 230.11 https://res.cloudinary.com/won-games/image/upload/v1621523198/unmetal_271f2a5cdb.jpg \N cloudinary {"public_id": "unmetal_271f2a5cdb", "resource_type": "image"} \N \N 2021-05-20 12:06:48.471-03 2021-05-20 12:06:48.471-03 641 time-loader.jpg \N \N 2560 1304 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_time_loader_4d47b7cf1a.jpg", "hash": "thumbnail_time_loader_4d47b7cf1a", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 8.2, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_time_loader_4d47b7cf1a", "resource_type": "image"}}} time_loader_4d47b7cf1a .jpg image/jpeg 275.03 https://res.cloudinary.com/won-games/image/upload/v1621523199/time_loader_4d47b7cf1a.jpg \N cloudinary {"public_id": "time_loader_4d47b7cf1a", "resource_type": "image"} \N \N 2021-05-20 12:06:49.003-03 2021-05-20 12:06:49.003-03 642 king-of-seas.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_king_of_seas_3e916436df.jpg", "hash": "thumbnail_king_of_seas_3e916436df", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 12.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_king_of_seas_3e916436df", "resource_type": "image"}}} king_of_seas_3e916436df .jpg image/jpeg 229.46 https://res.cloudinary.com/won-games/image/upload/v1621523199/king_of_seas_3e916436df.jpg \N cloudinary {"public_id": "king_of_seas_3e916436df", "resource_type": "image"} \N \N 2021-05-20 12:06:49.083-03 2021-05-20 12:06:49.083-03 643 unmetal.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_unmetal_4020937763.jpg", "hash": "thumbnail_unmetal_4020937763", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 7.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unmetal_4020937763", "resource_type": "image"}}} unmetal_4020937763 .jpg image/jpeg 211.53 https://res.cloudinary.com/won-games/image/upload/v1621523199/unmetal_4020937763.jpg \N cloudinary {"public_id": "unmetal_4020937763", "resource_type": "image"} \N \N 2021-05-20 12:06:49.215-03 2021-05-20 12:06:49.215-03 644 hoa.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_hoa_66a619ec06.jpg", "hash": "thumbnail_hoa_66a619ec06", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 7.26, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hoa_66a619ec06", "resource_type": "image"}}} hoa_66a619ec06 .jpg image/jpeg 186.49 https://res.cloudinary.com/won-games/image/upload/v1621523199/hoa_66a619ec06.jpg \N cloudinary {"public_id": "hoa_66a619ec06", "resource_type": "image"} \N \N 2021-05-20 12:06:49.36-03 2021-05-20 12:06:49.36-03 645 no-longer-home.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_no_longer_home_fb404b867d.jpg", "hash": "thumbnail_no_longer_home_fb404b867d", "mime": "image/jpeg", "name": "thumbnail_no-longer-home.jpg", "path": null, "size": 4.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_no_longer_home_fb404b867d", "resource_type": "image"}}} no_longer_home_fb404b867d .jpg image/jpeg 183.11 https://res.cloudinary.com/won-games/image/upload/v1621523199/no_longer_home_fb404b867d.jpg \N cloudinary {"public_id": "no_longer_home_fb404b867d", "resource_type": "image"} \N \N 2021-05-20 12:06:49.419-03 2021-05-20 12:06:49.419-03 646 whateverland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_whateverland_31555947ef.jpg", "hash": "thumbnail_whateverland_31555947ef", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 5.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_whateverland_31555947ef", "resource_type": "image"}}} whateverland_31555947ef .jpg image/jpeg 129.75 https://res.cloudinary.com/won-games/image/upload/v1621523198/whateverland_31555947ef.jpg \N cloudinary {"public_id": "whateverland_31555947ef", "resource_type": "image"} \N \N 2021-05-20 12:06:49.661-03 2021-05-20 12:06:49.661-03 647 time-loader.jpg \N \N 2554 1306 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_time_loader_b87019e7cf.jpg", "hash": "thumbnail_time_loader_b87019e7cf", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 7.05, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_time_loader_b87019e7cf", "resource_type": "image"}}} time_loader_b87019e7cf .jpg image/jpeg 325.70 https://res.cloudinary.com/won-games/image/upload/v1621523200/time_loader_b87019e7cf.jpg \N cloudinary {"public_id": "time_loader_b87019e7cf", "resource_type": "image"} \N \N 2021-05-20 12:06:49.809-03 2021-05-20 12:06:49.809-03 634 pharaoh-a-new-era.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523206/thumbnail_pharaoh_a_new_era_3a1782bde7.jpg", "hash": "thumbnail_pharaoh_a_new_era_3a1782bde7", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 9.45, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_3a1782bde7", "resource_type": "image"}}} pharaoh_a_new_era_3a1782bde7 .jpg image/jpeg 356.71 https://res.cloudinary.com/won-games/image/upload/v1621523198/pharaoh_a_new_era_3a1782bde7.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_3a1782bde7", "resource_type": "image"} \N \N 2021-05-20 12:06:48.228-03 2021-05-20 12:06:48.228-03 635 whateverland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_whateverland_53e003744e.jpg", "hash": "thumbnail_whateverland_53e003744e", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 5.81, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_whateverland_53e003744e", "resource_type": "image"}}} whateverland_53e003744e .jpg image/jpeg 172.82 https://res.cloudinary.com/won-games/image/upload/v1621523198/whateverland_53e003744e.jpg \N cloudinary {"public_id": "whateverland_53e003744e", "resource_type": "image"} \N \N 2021-05-20 12:06:48.277-03 2021-05-20 12:06:48.277-03 636 unmetal.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_unmetal_1ba73c03e5.jpg", "hash": "thumbnail_unmetal_1ba73c03e5", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 6.67, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unmetal_1ba73c03e5", "resource_type": "image"}}} unmetal_1ba73c03e5 .jpg image/jpeg 220.70 https://res.cloudinary.com/won-games/image/upload/v1621523199/unmetal_1ba73c03e5.jpg \N cloudinary {"public_id": "unmetal_1ba73c03e5", "resource_type": "image"} \N \N 2021-05-20 12:06:48.368-03 2021-05-20 12:06:48.368-03 640 strangeland.jpg \N \N 1279 719 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523207/thumbnail_strangeland_f0c8528aeb.jpg", "hash": "thumbnail_strangeland_f0c8528aeb", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 10.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strangeland_f0c8528aeb", "resource_type": "image"}}} strangeland_f0c8528aeb .jpg image/jpeg 264.93 https://res.cloudinary.com/won-games/image/upload/v1621523198/strangeland_f0c8528aeb.jpg \N cloudinary {"public_id": "strangeland_f0c8528aeb", "resource_type": "image"} \N \N 2021-05-20 12:06:49.002-03 2021-05-20 12:06:49.002-03 655 king-of-seas.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_king_of_seas_c936296c4b.jpg", "hash": "thumbnail_king_of_seas_c936296c4b", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 13.22, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_king_of_seas_c936296c4b", "resource_type": "image"}}} king_of_seas_c936296c4b .jpg image/jpeg 244.26 https://res.cloudinary.com/won-games/image/upload/v1621523199/king_of_seas_c936296c4b.jpg \N cloudinary {"public_id": "king_of_seas_c936296c4b", "resource_type": "image"} \N \N 2021-05-20 12:06:50.434-03 2021-05-20 12:06:50.434-03 656 black-skylands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_black_skylands_34ba1c0122.jpg", "hash": "thumbnail_black_skylands_34ba1c0122", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 9.55, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_black_skylands_34ba1c0122", "resource_type": "image"}}} black_skylands_34ba1c0122 .jpg image/jpeg 492.65 https://res.cloudinary.com/won-games/image/upload/v1621523199/black_skylands_34ba1c0122.jpg \N cloudinary {"public_id": "black_skylands_34ba1c0122", "resource_type": "image"} \N \N 2021-05-20 12:06:50.506-03 2021-05-20 12:06:50.506-03 657 xenonauts-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_xenonauts_2_4c89dbf269.jpg", "hash": "thumbnail_xenonauts_2_4c89dbf269", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 7.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_4c89dbf269", "resource_type": "image"}}} xenonauts_2_4c89dbf269 .jpg image/jpeg 239.72 https://res.cloudinary.com/won-games/image/upload/v1621523201/xenonauts_2_4c89dbf269.jpg \N cloudinary {"public_id": "xenonauts_2_4c89dbf269", "resource_type": "image"} \N \N 2021-05-20 12:06:50.518-03 2021-05-20 12:06:50.518-03 658 against-the-storm.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_against_the_storm_8141d957e4.jpg", "hash": "thumbnail_against_the_storm_8141d957e4", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 10.28, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_against_the_storm_8141d957e4", "resource_type": "image"}}} against_the_storm_8141d957e4 .jpg image/jpeg 319.05 https://res.cloudinary.com/won-games/image/upload/v1621523200/against_the_storm_8141d957e4.jpg \N cloudinary {"public_id": "against_the_storm_8141d957e4", "resource_type": "image"} \N \N 2021-05-20 12:06:50.532-03 2021-05-20 12:06:50.532-03 659 farlanders.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_farlanders_009f773805.jpg", "hash": "thumbnail_farlanders_009f773805", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 6.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_farlanders_009f773805", "resource_type": "image"}}} farlanders_009f773805 .jpg image/jpeg 286.63 https://res.cloudinary.com/won-games/image/upload/v1621523200/farlanders_009f773805.jpg \N cloudinary {"public_id": "farlanders_009f773805", "resource_type": "image"} \N \N 2021-05-20 12:06:50.561-03 2021-05-20 12:06:50.561-03 660 xenonauts-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_xenonauts_2_10fb3c408f.jpg", "hash": "thumbnail_xenonauts_2_10fb3c408f", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 4.6, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_10fb3c408f", "resource_type": "image"}}} xenonauts_2_10fb3c408f .jpg image/jpeg 143.22 https://res.cloudinary.com/won-games/image/upload/v1621523200/xenonauts_2_10fb3c408f.jpg \N cloudinary {"public_id": "xenonauts_2_10fb3c408f", "resource_type": "image"} \N \N 2021-05-20 12:06:50.582-03 2021-05-20 12:06:50.582-03 648 strategic-mind-fight-for-freedom.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_strategic_mind_fight_for_freedom_3395f0106d.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_3395f0106d", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 6.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_3395f0106d", "resource_type": "image"}}} strategic_mind_fight_for_freedom_3395f0106d .jpg image/jpeg 386.30 https://res.cloudinary.com/won-games/image/upload/v1621523199/strategic_mind_fight_for_freedom_3395f0106d.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_3395f0106d", "resource_type": "image"} \N \N 2021-05-20 12:06:49.834-03 2021-05-20 12:06:49.834-03 649 against-the-storm.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_against_the_storm_abe8752406.jpg", "hash": "thumbnail_against_the_storm_abe8752406", "mime": "image/jpeg", "name": "thumbnail_against-the-storm.jpg", "path": null, "size": 10.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_against_the_storm_abe8752406", "resource_type": "image"}}} against_the_storm_abe8752406 .jpg image/jpeg 346.40 https://res.cloudinary.com/won-games/image/upload/v1621523200/against_the_storm_abe8752406.jpg \N cloudinary {"public_id": "against_the_storm_abe8752406", "resource_type": "image"} \N \N 2021-05-20 12:06:49.943-03 2021-05-20 12:06:49.943-03 650 king-of-seas.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_king_of_seas_023a53ad9a.jpg", "hash": "thumbnail_king_of_seas_023a53ad9a", "mime": "image/jpeg", "name": "thumbnail_king-of-seas.jpg", "path": null, "size": 12.98, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_king_of_seas_023a53ad9a", "resource_type": "image"}}} king_of_seas_023a53ad9a .jpg image/jpeg 204.80 https://res.cloudinary.com/won-games/image/upload/v1621523199/king_of_seas_023a53ad9a.jpg \N cloudinary {"public_id": "king_of_seas_023a53ad9a", "resource_type": "image"} \N \N 2021-05-20 12:06:49.993-03 2021-05-20 12:06:49.993-03 651 the-forgotten-city.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_the_forgotten_city_c7e80db41d.jpg", "hash": "thumbnail_the_forgotten_city_c7e80db41d", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 8.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_c7e80db41d", "resource_type": "image"}}} the_forgotten_city_c7e80db41d .jpg image/jpeg 508.94 https://res.cloudinary.com/won-games/image/upload/v1621523200/the_forgotten_city_c7e80db41d.jpg \N cloudinary {"public_id": "the_forgotten_city_c7e80db41d", "resource_type": "image"} \N \N 2021-05-20 12:06:50.084-03 2021-05-20 12:06:50.084-03 652 hoa.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523208/thumbnail_hoa_037806a5a0.jpg", "hash": "thumbnail_hoa_037806a5a0", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 7.94, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hoa_037806a5a0", "resource_type": "image"}}} hoa_037806a5a0 .jpg image/jpeg 199.70 https://res.cloudinary.com/won-games/image/upload/v1621523199/hoa_037806a5a0.jpg \N cloudinary {"public_id": "hoa_037806a5a0", "resource_type": "image"} \N \N 2021-05-20 12:06:50.155-03 2021-05-20 12:06:50.155-03 653 intravenous.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_intravenous_10e43f4bf4.jpg", "hash": "thumbnail_intravenous_10e43f4bf4", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 6.76, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_intravenous_10e43f4bf4", "resource_type": "image"}}} intravenous_10e43f4bf4 .jpg image/jpeg 427.29 https://res.cloudinary.com/won-games/image/upload/v1621523200/intravenous_10e43f4bf4.jpg \N cloudinary {"public_id": "intravenous_10e43f4bf4", "resource_type": "image"} \N \N 2021-05-20 12:06:50.236-03 2021-05-20 12:06:50.236-03 654 unmetal.jpg \N \N 1280 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_unmetal_f590667810.jpg", "hash": "thumbnail_unmetal_f590667810", "mime": "image/jpeg", "name": "thumbnail_unmetal.jpg", "path": null, "size": 9.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unmetal_f590667810", "resource_type": "image"}}} unmetal_f590667810 .jpg image/jpeg 273.17 https://res.cloudinary.com/won-games/image/upload/v1621523200/unmetal_f590667810.jpg \N cloudinary {"public_id": "unmetal_f590667810", "resource_type": "image"} \N \N 2021-05-20 12:06:50.424-03 2021-05-20 12:06:50.424-03 668 intravenous.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_intravenous_398af02f30.jpg", "hash": "thumbnail_intravenous_398af02f30", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 6.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_intravenous_398af02f30", "resource_type": "image"}}} intravenous_398af02f30 .jpg image/jpeg 393.18 https://res.cloudinary.com/won-games/image/upload/v1621523200/intravenous_398af02f30.jpg \N cloudinary {"public_id": "intravenous_398af02f30", "resource_type": "image"} \N \N 2021-05-20 12:06:51.133-03 2021-05-20 12:06:51.133-03 669 a-jugglers-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_a_jugglers_tale_e4830033c2.jpg", "hash": "thumbnail_a_jugglers_tale_e4830033c2", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 7.61, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_e4830033c2", "resource_type": "image"}}} a_jugglers_tale_e4830033c2 .jpg image/jpeg 395.00 https://res.cloudinary.com/won-games/image/upload/v1621523201/a_jugglers_tale_e4830033c2.jpg \N cloudinary {"public_id": "a_jugglers_tale_e4830033c2", "resource_type": "image"} \N \N 2021-05-20 12:06:51.171-03 2021-05-20 12:06:51.171-03 670 the-forgotten-city.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_the_forgotten_city_e041c1584e.jpg", "hash": "thumbnail_the_forgotten_city_e041c1584e", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 6.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_e041c1584e", "resource_type": "image"}}} the_forgotten_city_e041c1584e .jpg image/jpeg 415.65 https://res.cloudinary.com/won-games/image/upload/v1621523202/the_forgotten_city_e041c1584e.jpg \N cloudinary {"public_id": "the_forgotten_city_e041c1584e", "resource_type": "image"} \N \N 2021-05-20 12:06:51.198-03 2021-05-20 12:06:51.198-03 661 whateverland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_whateverland_4d473610d9.jpg", "hash": "thumbnail_whateverland_4d473610d9", "mime": "image/jpeg", "name": "thumbnail_whateverland.jpg", "path": null, "size": 7.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_whateverland_4d473610d9", "resource_type": "image"}}} whateverland_4d473610d9 .jpg image/jpeg 216.76 https://res.cloudinary.com/won-games/image/upload/v1621523200/whateverland_4d473610d9.jpg \N cloudinary {"public_id": "whateverland_4d473610d9", "resource_type": "image"} \N \N 2021-05-20 12:06:50.787-03 2021-05-20 12:06:50.787-03 662 brave-earth-prologue.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_brave_earth_prologue_c267e6efc7.jpg", "hash": "thumbnail_brave_earth_prologue_c267e6efc7", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 9.24, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_c267e6efc7", "resource_type": "image"}}} brave_earth_prologue_c267e6efc7 .jpg image/jpeg 145.96 https://res.cloudinary.com/won-games/image/upload/v1621523201/brave_earth_prologue_c267e6efc7.jpg \N cloudinary {"public_id": "brave_earth_prologue_c267e6efc7", "resource_type": "image"} \N \N 2021-05-20 12:06:50.921-03 2021-05-20 12:06:50.921-03 663 pharaoh-a-new-era.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_pharaoh_a_new_era_a579c004bf.jpg", "hash": "thumbnail_pharaoh_a_new_era_a579c004bf", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 9.33, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_a579c004bf", "resource_type": "image"}}} pharaoh_a_new_era_a579c004bf .jpg image/jpeg 372.68 https://res.cloudinary.com/won-games/image/upload/v1621523200/pharaoh_a_new_era_a579c004bf.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_a579c004bf", "resource_type": "image"} \N \N 2021-05-20 12:06:50.936-03 2021-05-20 12:06:50.936-03 664 cold-hearts.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_cold_hearts_432c0cd0aa.jpg", "hash": "thumbnail_cold_hearts_432c0cd0aa", "mime": "image/jpeg", "name": "thumbnail_cold-hearts.jpg", "path": null, "size": 8.86, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_cold_hearts_432c0cd0aa", "resource_type": "image"}}} cold_hearts_432c0cd0aa .jpg image/jpeg 418.57 https://res.cloudinary.com/won-games/image/upload/v1621523200/cold_hearts_432c0cd0aa.jpg \N cloudinary {"public_id": "cold_hearts_432c0cd0aa", "resource_type": "image"} \N \N 2021-05-20 12:06:50.975-03 2021-05-20 12:06:50.975-03 665 recompile.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_recompile_252d1dd6ff.jpg", "hash": "thumbnail_recompile_252d1dd6ff", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 8.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_recompile_252d1dd6ff", "resource_type": "image"}}} recompile_252d1dd6ff .jpg image/jpeg 350.27 https://res.cloudinary.com/won-games/image/upload/v1621523201/recompile_252d1dd6ff.jpg \N cloudinary {"public_id": "recompile_252d1dd6ff", "resource_type": "image"} \N \N 2021-05-20 12:06:51.057-03 2021-05-20 12:06:51.057-03 666 a-jugglers-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_a_jugglers_tale_54e61808b1.jpg", "hash": "thumbnail_a_jugglers_tale_54e61808b1", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 5.97, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_54e61808b1", "resource_type": "image"}}} a_jugglers_tale_54e61808b1 .jpg image/jpeg 224.47 https://res.cloudinary.com/won-games/image/upload/v1621523200/a_jugglers_tale_54e61808b1.jpg \N cloudinary {"public_id": "a_jugglers_tale_54e61808b1", "resource_type": "image"} \N \N 2021-05-20 12:06:51.12-03 2021-05-20 12:06:51.12-03 667 time-loader.jpg \N \N 2559 1304 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_time_loader_d112c7c790.jpg", "hash": "thumbnail_time_loader_d112c7c790", "mime": "image/jpeg", "name": "thumbnail_time-loader.jpg", "path": null, "size": 8.03, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_time_loader_d112c7c790", "resource_type": "image"}}} time_loader_d112c7c790 .jpg image/jpeg 339.57 https://res.cloudinary.com/won-games/image/upload/v1621523200/time_loader_d112c7c790.jpg \N cloudinary {"public_id": "time_loader_d112c7c790", "resource_type": "image"} \N \N 2021-05-20 12:06:51.132-03 2021-05-20 12:06:51.132-03 676 figment-creed-valley.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_figment_creed_valley_fbba9ddc9b.jpg", "hash": "thumbnail_figment_creed_valley_fbba9ddc9b", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 8.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_fbba9ddc9b", "resource_type": "image"}}} figment_creed_valley_fbba9ddc9b .jpg image/jpeg 497.86 https://res.cloudinary.com/won-games/image/upload/v1621523201/figment_creed_valley_fbba9ddc9b.jpg \N cloudinary {"public_id": "figment_creed_valley_fbba9ddc9b", "resource_type": "image"} \N \N 2021-05-20 12:06:51.41-03 2021-05-20 12:06:51.41-03 691 black-skylands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_black_skylands_9b6de76ff0.jpg", "hash": "thumbnail_black_skylands_9b6de76ff0", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 9.67, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_black_skylands_9b6de76ff0", "resource_type": "image"}}} black_skylands_9b6de76ff0 .jpg image/jpeg 465.83 https://res.cloudinary.com/won-games/image/upload/v1621523201/black_skylands_9b6de76ff0.jpg \N cloudinary {"public_id": "black_skylands_9b6de76ff0", "resource_type": "image"} \N \N 2021-05-20 12:06:52.078-03 2021-05-20 12:06:52.078-03 695 the-forgotten-city.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_the_forgotten_city_6705ce7d9b.jpg", "hash": "thumbnail_the_forgotten_city_6705ce7d9b", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 5.62, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_6705ce7d9b", "resource_type": "image"}}} the_forgotten_city_6705ce7d9b .jpg image/jpeg 299.43 https://res.cloudinary.com/won-games/image/upload/v1621523202/the_forgotten_city_6705ce7d9b.jpg \N cloudinary {"public_id": "the_forgotten_city_6705ce7d9b", "resource_type": "image"} \N \N 2021-05-20 12:06:52.23-03 2021-05-20 12:06:52.23-03 671 recompile.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_recompile_63236ad98a.jpg", "hash": "thumbnail_recompile_63236ad98a", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 6.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_recompile_63236ad98a", "resource_type": "image"}}} recompile_63236ad98a .jpg image/jpeg 201.56 https://res.cloudinary.com/won-games/image/upload/v1621523200/recompile_63236ad98a.jpg \N cloudinary {"public_id": "recompile_63236ad98a", "resource_type": "image"} \N \N 2021-05-20 12:06:51.215-03 2021-05-20 12:06:51.215-03 672 recompile.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_recompile_610032a4df.jpg", "hash": "thumbnail_recompile_610032a4df", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 6.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_recompile_610032a4df", "resource_type": "image"}}} recompile_610032a4df .jpg image/jpeg 257.06 https://res.cloudinary.com/won-games/image/upload/v1621523200/recompile_610032a4df.jpg \N cloudinary {"public_id": "recompile_610032a4df", "resource_type": "image"} \N \N 2021-05-20 12:06:51.269-03 2021-05-20 12:06:51.269-03 673 intravenous.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_intravenous_e1efdbb39f.jpg", "hash": "thumbnail_intravenous_e1efdbb39f", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 8.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_intravenous_e1efdbb39f", "resource_type": "image"}}} intravenous_e1efdbb39f .jpg image/jpeg 544.11 https://res.cloudinary.com/won-games/image/upload/v1621523201/intravenous_e1efdbb39f.jpg \N cloudinary {"public_id": "intravenous_e1efdbb39f", "resource_type": "image"} \N \N 2021-05-20 12:06:51.329-03 2021-05-20 12:06:51.329-03 674 gloomwood.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523209/thumbnail_gloomwood_dcefa82add.jpg", "hash": "thumbnail_gloomwood_dcefa82add", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 2.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gloomwood_dcefa82add", "resource_type": "image"}}} gloomwood_dcefa82add .jpg image/jpeg 200.22 https://res.cloudinary.com/won-games/image/upload/v1621523200/gloomwood_dcefa82add.jpg \N cloudinary {"public_id": "gloomwood_dcefa82add", "resource_type": "image"} \N \N 2021-05-20 12:06:51.356-03 2021-05-20 12:06:51.356-03 675 farlanders.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_farlanders_54ddfd39bf.jpg", "hash": "thumbnail_farlanders_54ddfd39bf", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 7.27, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_farlanders_54ddfd39bf", "resource_type": "image"}}} farlanders_54ddfd39bf .jpg image/jpeg 352.17 https://res.cloudinary.com/won-games/image/upload/v1621523201/farlanders_54ddfd39bf.jpg \N cloudinary {"public_id": "farlanders_54ddfd39bf", "resource_type": "image"} \N \N 2021-05-20 12:06:51.41-03 2021-05-20 12:06:51.41-03 680 almighty-kill-your-gods.jpg \N \N 1919 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_almighty_kill_your_gods_b166dbfd1f.jpg", "hash": "thumbnail_almighty_kill_your_gods_b166dbfd1f", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 7.89, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_b166dbfd1f", "resource_type": "image"}}} almighty_kill_your_gods_b166dbfd1f .jpg image/jpeg 686.03 https://res.cloudinary.com/won-games/image/upload/v1621523201/almighty_kill_your_gods_b166dbfd1f.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_b166dbfd1f", "resource_type": "image"} \N \N 2021-05-20 12:06:51.602-03 2021-05-20 12:06:51.602-03 686 xenonauts-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_xenonauts_2_a5a3d491ae.jpg", "hash": "thumbnail_xenonauts_2_a5a3d491ae", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 11.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_a5a3d491ae", "resource_type": "image"}}} xenonauts_2_a5a3d491ae .jpg image/jpeg 475.34 https://res.cloudinary.com/won-games/image/upload/v1621523202/xenonauts_2_a5a3d491ae.jpg \N cloudinary {"public_id": "xenonauts_2_a5a3d491ae", "resource_type": "image"} \N \N 2021-05-20 12:06:51.797-03 2021-05-20 12:06:51.797-03 692 guild-of-ascension.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_guild_of_ascension_0d6259e7f8.jpg", "hash": "thumbnail_guild_of_ascension_0d6259e7f8", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 7.78, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_0d6259e7f8", "resource_type": "image"}}} guild_of_ascension_0d6259e7f8 .jpg image/jpeg 338.46 https://res.cloudinary.com/won-games/image/upload/v1621523202/guild_of_ascension_0d6259e7f8.jpg \N cloudinary {"public_id": "guild_of_ascension_0d6259e7f8", "resource_type": "image"} \N \N 2021-05-20 12:06:52.08-03 2021-05-20 12:06:52.08-03 693 gestalt-steam-cinder.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_gestalt_steam_cinder_4286453df9.jpg", "hash": "thumbnail_gestalt_steam_cinder_4286453df9", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 8.6, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_4286453df9", "resource_type": "image"}}} gestalt_steam_cinder_4286453df9 .jpg image/jpeg 740.60 https://res.cloudinary.com/won-games/image/upload/v1621523203/gestalt_steam_cinder_4286453df9.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_4286453df9", "resource_type": "image"} \N \N 2021-05-20 12:06:52.173-03 2021-05-20 12:06:52.173-03 694 curved-space.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_curved_space_110d81bda4.jpg", "hash": "thumbnail_curved_space_110d81bda4", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 9.25, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_curved_space_110d81bda4", "resource_type": "image"}}} curved_space_110d81bda4 .jpg image/jpeg 460.31 https://res.cloudinary.com/won-games/image/upload/v1621523204/curved_space_110d81bda4.jpg \N cloudinary {"public_id": "curved_space_110d81bda4", "resource_type": "image"} \N \N 2021-05-20 12:06:52.224-03 2021-05-20 12:06:52.224-03 682 gloomwood.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_gloomwood_ab97739d81.jpg", "hash": "thumbnail_gloomwood_ab97739d81", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 4.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gloomwood_ab97739d81", "resource_type": "image"}}} gloomwood_ab97739d81 .jpg image/jpeg 451.90 https://res.cloudinary.com/won-games/image/upload/v1621523202/gloomwood_ab97739d81.jpg \N cloudinary {"public_id": "gloomwood_ab97739d81", "resource_type": "image"} \N \N 2021-05-20 12:06:51.642-03 2021-05-20 12:06:51.642-03 683 black-skylands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_black_skylands_c432b20244.jpg", "hash": "thumbnail_black_skylands_c432b20244", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 8.71, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_black_skylands_c432b20244", "resource_type": "image"}}} black_skylands_c432b20244 .jpg image/jpeg 489.47 https://res.cloudinary.com/won-games/image/upload/v1621523200/black_skylands_c432b20244.jpg \N cloudinary {"public_id": "black_skylands_c432b20244", "resource_type": "image"} \N \N 2021-05-20 12:06:51.662-03 2021-05-20 12:06:51.662-03 684 black-skylands.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_black_skylands_4636275b92.jpg", "hash": "thumbnail_black_skylands_4636275b92", "mime": "image/jpeg", "name": "thumbnail_black-skylands.jpg", "path": null, "size": 8.88, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_black_skylands_4636275b92", "resource_type": "image"}}} black_skylands_4636275b92 .jpg image/jpeg 542.15 https://res.cloudinary.com/won-games/image/upload/v1621523201/black_skylands_4636275b92.jpg \N cloudinary {"public_id": "black_skylands_4636275b92", "resource_type": "image"} \N \N 2021-05-20 12:06:51.721-03 2021-05-20 12:06:51.721-03 685 asylum.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_asylum_2100033e82.jpg", "hash": "thumbnail_asylum_2100033e82", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 6.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_asylum_2100033e82", "resource_type": "image"}}} asylum_2100033e82 .jpg image/jpeg 578.52 https://res.cloudinary.com/won-games/image/upload/v1621523203/asylum_2100033e82.jpg \N cloudinary {"public_id": "asylum_2100033e82", "resource_type": "image"} \N \N 2021-05-20 12:06:51.778-03 2021-05-20 12:06:51.778-03 687 figment-creed-valley.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_figment_creed_valley_60a1bf862e.jpg", "hash": "thumbnail_figment_creed_valley_60a1bf862e", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 9.8, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_60a1bf862e", "resource_type": "image"}}} figment_creed_valley_60a1bf862e .jpg image/jpeg 593.38 https://res.cloudinary.com/won-games/image/upload/v1621523202/figment_creed_valley_60a1bf862e.jpg \N cloudinary {"public_id": "figment_creed_valley_60a1bf862e", "resource_type": "image"} \N \N 2021-05-20 12:06:51.797-03 2021-05-20 12:06:51.797-03 688 guild-of-ascension.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_guild_of_ascension_e1e31a816d.jpg", "hash": "thumbnail_guild_of_ascension_e1e31a816d", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 8.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_e1e31a816d", "resource_type": "image"}}} guild_of_ascension_e1e31a816d .jpg image/jpeg 438.36 https://res.cloudinary.com/won-games/image/upload/v1621523202/guild_of_ascension_e1e31a816d.jpg \N cloudinary {"public_id": "guild_of_ascension_e1e31a816d", "resource_type": "image"} \N \N 2021-05-20 12:06:51.955-03 2021-05-20 12:06:51.955-03 689 almighty-kill-your-gods.jpg \N \N 1919 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_almighty_kill_your_gods_1d1947869d.jpg", "hash": "thumbnail_almighty_kill_your_gods_1d1947869d", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 8.02, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_1d1947869d", "resource_type": "image"}}} almighty_kill_your_gods_1d1947869d .jpg image/jpeg 521.87 https://res.cloudinary.com/won-games/image/upload/v1621523201/almighty_kill_your_gods_1d1947869d.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_1d1947869d", "resource_type": "image"} \N \N 2021-05-20 12:06:51.986-03 2021-05-20 12:06:51.986-03 690 pharaoh-a-new-era.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_pharaoh_a_new_era_0c8e3cf289.jpg", "hash": "thumbnail_pharaoh_a_new_era_0c8e3cf289", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 15.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_0c8e3cf289", "resource_type": "image"}}} pharaoh_a_new_era_0c8e3cf289 .jpg image/jpeg 1118.00 https://res.cloudinary.com/won-games/image/upload/v1621523202/pharaoh_a_new_era_0c8e3cf289.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_0c8e3cf289", "resource_type": "image"} \N \N 2021-05-20 12:06:52.067-03 2021-05-20 12:06:52.067-03 699 asylum.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_asylum_63fac1c14c.jpg", "hash": "thumbnail_asylum_63fac1c14c", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 5.83, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_asylum_63fac1c14c", "resource_type": "image"}}} asylum_63fac1c14c .jpg image/jpeg 391.54 https://res.cloudinary.com/won-games/image/upload/v1621523202/asylum_63fac1c14c.jpg \N cloudinary {"public_id": "asylum_63fac1c14c", "resource_type": "image"} \N \N 2021-05-20 12:06:52.496-03 2021-05-20 12:06:52.496-03 700 curved-space.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_curved_space_a068a4214e.jpg", "hash": "thumbnail_curved_space_a068a4214e", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 9.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_curved_space_a068a4214e", "resource_type": "image"}}} curved_space_a068a4214e .jpg image/jpeg 529.35 https://res.cloudinary.com/won-games/image/upload/v1621523204/curved_space_a068a4214e.jpg \N cloudinary {"public_id": "curved_space_a068a4214e", "resource_type": "image"} \N \N 2021-05-20 12:06:52.561-03 2021-05-20 12:06:52.561-03 696 xenonauts-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_xenonauts_2_5b2dbc5290.jpg", "hash": "thumbnail_xenonauts_2_5b2dbc5290", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 9.06, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_5b2dbc5290", "resource_type": "image"}}} xenonauts_2_5b2dbc5290 .jpg image/jpeg 523.59 https://res.cloudinary.com/won-games/image/upload/v1621523203/xenonauts_2_5b2dbc5290.jpg \N cloudinary {"public_id": "xenonauts_2_5b2dbc5290", "resource_type": "image"} \N \N 2021-05-20 12:06:52.348-03 2021-05-20 12:06:52.348-03 697 unbound-worlds-apart.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_unbound_worlds_apart_0490e7c20c.jpg", "hash": "thumbnail_unbound_worlds_apart_0490e7c20c", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 3.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_0490e7c20c", "resource_type": "image"}}} unbound_worlds_apart_0490e7c20c .jpg image/jpeg 829.06 https://res.cloudinary.com/won-games/image/upload/v1621523204/unbound_worlds_apart_0490e7c20c.jpg \N cloudinary {"public_id": "unbound_worlds_apart_0490e7c20c", "resource_type": "image"} \N \N 2021-05-20 12:06:52.481-03 2021-05-20 12:06:52.481-03 716 brave-earth-prologue.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_brave_earth_prologue_0e891bb9e3.jpg", "hash": "thumbnail_brave_earth_prologue_0e891bb9e3", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 10.83, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_0e891bb9e3", "resource_type": "image"}}} brave_earth_prologue_0e891bb9e3 .jpg image/jpeg 148.54 https://res.cloudinary.com/won-games/image/upload/v1621523206/brave_earth_prologue_0e891bb9e3.jpg \N cloudinary {"public_id": "brave_earth_prologue_0e891bb9e3", "resource_type": "image"} \N \N 2021-05-20 12:06:53.705-03 2021-05-20 12:06:53.705-03 721 almighty-kill-your-gods.jpg \N \N 1919 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_almighty_kill_your_gods_4ebb724a96.jpg", "hash": "thumbnail_almighty_kill_your_gods_4ebb724a96", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 6.46, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_4ebb724a96", "resource_type": "image"}}} almighty_kill_your_gods_4ebb724a96 .jpg image/jpeg 520.11 https://res.cloudinary.com/won-games/image/upload/v1621523205/almighty_kill_your_gods_4ebb724a96.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_4ebb724a96", "resource_type": "image"} \N \N 2021-05-20 12:06:53.768-03 2021-05-20 12:06:53.768-03 777 resort.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_resort_b629abd351.jpg", "hash": "thumbnail_resort_b629abd351", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 8.8, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_resort_b629abd351", "resource_type": "image"}}} resort_b629abd351 .jpg image/jpeg 450.26 https://res.cloudinary.com/won-games/image/upload/v1621523210/resort_b629abd351.jpg \N cloudinary {"public_id": "resort_b629abd351", "resource_type": "image"} \N \N 2021-05-20 12:06:55.129-03 2021-05-20 12:06:55.129-03 787 saint-kotar.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_saint_kotar_9f86aaacf7.jpg", "hash": "thumbnail_saint_kotar_9f86aaacf7", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 5.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_saint_kotar_9f86aaacf7", "resource_type": "image"}}} saint_kotar_9f86aaacf7 .jpg image/jpeg 1105.14 https://res.cloudinary.com/won-games/image/upload/v1621523208/saint_kotar_9f86aaacf7.jpg \N cloudinary {"public_id": "saint_kotar_9f86aaacf7", "resource_type": "image"} \N \N 2021-05-20 12:06:55.358-03 2021-05-20 12:06:55.358-03 788 imagine-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_imagine_earth_83a4df6575.jpg", "hash": "thumbnail_imagine_earth_83a4df6575", "mime": "image/jpeg", "name": "thumbnail_imagine-earth.jpg", "path": null, "size": 32.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_imagine_earth_83a4df6575", "resource_type": "image"}}} imagine_earth_83a4df6575 .jpg image/jpeg 608.62 https://res.cloudinary.com/won-games/image/upload/v1621523212/imagine_earth_83a4df6575.jpg \N cloudinary {"public_id": "imagine_earth_83a4df6575", "resource_type": "image"} \N \N 2021-05-20 12:06:55.379-03 2021-05-20 12:06:55.379-03 789 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 10.46, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607 .jpg image/jpeg 445.90 https://res.cloudinary.com/won-games/image/upload/v1621523210/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_560d782607", "resource_type": "image"} \N \N 2021-05-20 12:06:55.389-03 2021-05-20 12:06:55.389-03 791 eldest-souls.jpg \N \N 5120 2880 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_eldest_souls_2cf99c8bf7.jpg", "hash": "thumbnail_eldest_souls_2cf99c8bf7", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 13.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_eldest_souls_2cf99c8bf7", "resource_type": "image"}}} eldest_souls_2cf99c8bf7 .jpg image/jpeg 1090.88 https://res.cloudinary.com/won-games/image/upload/v1621523210/eldest_souls_2cf99c8bf7.jpg \N cloudinary {"public_id": "eldest_souls_2cf99c8bf7", "resource_type": "image"} \N \N 2021-05-20 12:06:55.407-03 2021-05-20 12:06:55.407-03 792 saint-kotar.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_saint_kotar_bb6d0790e8.jpg", "hash": "thumbnail_saint_kotar_bb6d0790e8", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 13.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_saint_kotar_bb6d0790e8", "resource_type": "image"}}} saint_kotar_bb6d0790e8 .jpg image/jpeg 1477.43 https://res.cloudinary.com/won-games/image/upload/v1621523209/saint_kotar_bb6d0790e8.jpg \N cloudinary {"public_id": "saint_kotar_bb6d0790e8", "resource_type": "image"} \N \N 2021-05-20 12:06:55.516-03 2021-05-20 12:06:55.516-03 698 a-jugglers-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523210/thumbnail_a_jugglers_tale_65e06ff238.jpg", "hash": "thumbnail_a_jugglers_tale_65e06ff238", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 6.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_65e06ff238", "resource_type": "image"}}} a_jugglers_tale_65e06ff238 .jpg image/jpeg 403.23 https://res.cloudinary.com/won-games/image/upload/v1621523201/a_jugglers_tale_65e06ff238.jpg \N cloudinary {"public_id": "a_jugglers_tale_65e06ff238", "resource_type": "image"} \N \N 2021-05-20 12:06:52.487-03 2021-05-20 12:06:52.487-03 709 brok-the-investigator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_brok_the_investigator_6c86870b7c.jpg", "hash": "thumbnail_brok_the_investigator_6c86870b7c", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 13.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_6c86870b7c", "resource_type": "image"}}} brok_the_investigator_6c86870b7c .jpg image/jpeg 246.58 https://res.cloudinary.com/won-games/image/upload/v1621523205/brok_the_investigator_6c86870b7c.jpg \N cloudinary {"public_id": "brok_the_investigator_6c86870b7c", "resource_type": "image"} \N \N 2021-05-20 12:06:53.362-03 2021-05-20 12:06:53.362-03 710 curved-space.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_curved_space_3af995ccf6.jpg", "hash": "thumbnail_curved_space_3af995ccf6", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 10.31, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_curved_space_3af995ccf6", "resource_type": "image"}}} curved_space_3af995ccf6 .jpg image/jpeg 541.95 https://res.cloudinary.com/won-games/image/upload/v1621523205/curved_space_3af995ccf6.jpg \N cloudinary {"public_id": "curved_space_3af995ccf6", "resource_type": "image"} \N \N 2021-05-20 12:06:53.386-03 2021-05-20 12:06:53.386-03 711 strategic-mind-fight-for-freedom.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_strategic_mind_fight_for_freedom_a4e058d383.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_a4e058d383", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 9.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_a4e058d383", "resource_type": "image"}}} strategic_mind_fight_for_freedom_a4e058d383 .jpg image/jpeg 688.12 https://res.cloudinary.com/won-games/image/upload/v1621523205/strategic_mind_fight_for_freedom_a4e058d383.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_a4e058d383", "resource_type": "image"} \N \N 2021-05-20 12:06:53.431-03 2021-05-20 12:06:53.431-03 712 almighty-kill-your-gods.jpg \N \N 1919 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_almighty_kill_your_gods_3ec14fd096.jpg", "hash": "thumbnail_almighty_kill_your_gods_3ec14fd096", "mime": "image/jpeg", "name": "thumbnail_almighty-kill-your-gods.jpg", "path": null, "size": 9.2, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_almighty_kill_your_gods_3ec14fd096", "resource_type": "image"}}} almighty_kill_your_gods_3ec14fd096 .jpg image/jpeg 753.46 https://res.cloudinary.com/won-games/image/upload/v1621523204/almighty_kill_your_gods_3ec14fd096.jpg \N cloudinary {"public_id": "almighty_kill_your_gods_3ec14fd096", "resource_type": "image"} \N \N 2021-05-20 12:06:53.473-03 2021-05-20 12:06:53.473-03 713 brave-earth-prologue.jpg \N \N 640 480 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_brave_earth_prologue_e354f4294c.jpg", "hash": "thumbnail_brave_earth_prologue_e354f4294c", "mime": "image/jpeg", "name": "thumbnail_brave-earth-prologue.jpg", "path": null, "size": 8.75, "width": 208, "height": 156, "provider_metadata": {"public_id": "thumbnail_brave_earth_prologue_e354f4294c", "resource_type": "image"}}} brave_earth_prologue_e354f4294c .jpg image/jpeg 115.40 https://res.cloudinary.com/won-games/image/upload/v1621523205/brave_earth_prologue_e354f4294c.jpg \N cloudinary {"public_id": "brave_earth_prologue_e354f4294c", "resource_type": "image"} \N \N 2021-05-20 12:06:53.49-03 2021-05-20 12:06:53.49-03 714 potion-craft-alchemist-simulator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_potion_craft_alchemist_simulator_2c9e6add21.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_2c9e6add21", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 9.7, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_2c9e6add21", "resource_type": "image"}}} potion_craft_alchemist_simulator_2c9e6add21 .jpg image/jpeg 996.20 https://res.cloudinary.com/won-games/image/upload/v1621523205/potion_craft_alchemist_simulator_2c9e6add21.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_2c9e6add21", "resource_type": "image"} \N \N 2021-05-20 12:06:53.537-03 2021-05-20 12:06:53.537-03 715 a-jugglers-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_a_jugglers_tale_695b8f522e.jpg", "hash": "thumbnail_a_jugglers_tale_695b8f522e", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 11.57, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_695b8f522e", "resource_type": "image"}}} a_jugglers_tale_695b8f522e .jpg image/jpeg 468.40 https://res.cloudinary.com/won-games/image/upload/v1621523205/a_jugglers_tale_695b8f522e.jpg \N cloudinary {"public_id": "a_jugglers_tale_695b8f522e", "resource_type": "image"} \N \N 2021-05-20 12:06:53.601-03 2021-05-20 12:06:53.601-03 718 eldest-souls.jpg \N \N 5120 2880 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_eldest_souls_9df22e8f6a.jpg", "hash": "thumbnail_eldest_souls_9df22e8f6a", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 9.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_eldest_souls_9df22e8f6a", "resource_type": "image"}}} eldest_souls_9df22e8f6a .jpg image/jpeg 907.89 https://res.cloudinary.com/won-games/image/upload/v1621523206/eldest_souls_9df22e8f6a.jpg \N cloudinary {"public_id": "eldest_souls_9df22e8f6a", "resource_type": "image"} \N \N 2021-05-20 12:06:53.707-03 2021-05-20 12:06:53.707-03 723 system-shock.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_system_shock_7be203630d.jpg", "hash": "thumbnail_system_shock_7be203630d", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 13.44, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_system_shock_7be203630d", "resource_type": "image"}}} system_shock_7be203630d .jpg image/jpeg 711.70 https://res.cloudinary.com/won-games/image/upload/v1621523205/system_shock_7be203630d.jpg \N cloudinary {"public_id": "system_shock_7be203630d", "resource_type": "image"} \N \N 2021-05-20 12:06:53.784-03 2021-05-20 12:06:53.784-03 701 xenonauts-2.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_xenonauts_2_93b37fe40e.jpg", "hash": "thumbnail_xenonauts_2_93b37fe40e", "mime": "image/jpeg", "name": "thumbnail_xenonauts-2.jpg", "path": null, "size": 9.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_xenonauts_2_93b37fe40e", "resource_type": "image"}}} xenonauts_2_93b37fe40e .jpg image/jpeg 515.74 https://res.cloudinary.com/won-games/image/upload/v1621523203/xenonauts_2_93b37fe40e.jpg \N cloudinary {"public_id": "xenonauts_2_93b37fe40e", "resource_type": "image"} \N \N 2021-05-20 12:06:52.594-03 2021-05-20 12:06:52.594-03 702 farlanders.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_farlanders_01d11707ed.jpg", "hash": "thumbnail_farlanders_01d11707ed", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 9.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_farlanders_01d11707ed", "resource_type": "image"}}} farlanders_01d11707ed .jpg image/jpeg 557.98 https://res.cloudinary.com/won-games/image/upload/v1621523204/farlanders_01d11707ed.jpg \N cloudinary {"public_id": "farlanders_01d11707ed", "resource_type": "image"} \N \N 2021-05-20 12:06:52.777-03 2021-05-20 12:06:52.777-03 703 saint-kotar.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_saint_kotar_81e774f0a4.jpg", "hash": "thumbnail_saint_kotar_81e774f0a4", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 50.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_saint_kotar_81e774f0a4", "resource_type": "image"}}} saint_kotar_81e774f0a4 .jpg image/jpeg 921.25 https://res.cloudinary.com/won-games/image/upload/v1621523203/saint_kotar_81e774f0a4.jpg \N cloudinary {"public_id": "saint_kotar_81e774f0a4", "resource_type": "image"} \N \N 2021-05-20 12:06:52.963-03 2021-05-20 12:06:52.963-03 704 asylum.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_asylum_3007715b76.jpg", "hash": "thumbnail_asylum_3007715b76", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 6.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_asylum_3007715b76", "resource_type": "image"}}} asylum_3007715b76 .jpg image/jpeg 397.98 https://res.cloudinary.com/won-games/image/upload/v1621523205/asylum_3007715b76.jpg \N cloudinary {"public_id": "asylum_3007715b76", "resource_type": "image"} \N \N 2021-05-20 12:06:53.059-03 2021-05-20 12:06:53.059-03 705 curved-space.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_curved_space_93a93e1e79.jpg", "hash": "thumbnail_curved_space_93a93e1e79", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 8.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_curved_space_93a93e1e79", "resource_type": "image"}}} curved_space_93a93e1e79 .jpg image/jpeg 493.96 https://res.cloudinary.com/won-games/image/upload/v1621523205/curved_space_93a93e1e79.jpg \N cloudinary {"public_id": "curved_space_93a93e1e79", "resource_type": "image"} \N \N 2021-05-20 12:06:53.114-03 2021-05-20 12:06:53.114-03 706 guild-of-ascension.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_guild_of_ascension_404b520314.jpg", "hash": "thumbnail_guild_of_ascension_404b520314", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 8.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_404b520314", "resource_type": "image"}}} guild_of_ascension_404b520314 .jpg image/jpeg 449.93 https://res.cloudinary.com/won-games/image/upload/v1621523205/guild_of_ascension_404b520314.jpg \N cloudinary {"public_id": "guild_of_ascension_404b520314", "resource_type": "image"} \N \N 2021-05-20 12:06:53.186-03 2021-05-20 12:06:53.186-03 707 master-of-magic.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_master_of_magic_7f5bbc277d.jpg", "hash": "thumbnail_master_of_magic_7f5bbc277d", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 6.75, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_master_of_magic_7f5bbc277d", "resource_type": "image"}}} master_of_magic_7f5bbc277d .jpg image/jpeg 343.38 https://res.cloudinary.com/won-games/image/upload/v1621523206/master_of_magic_7f5bbc277d.jpg \N cloudinary {"public_id": "master_of_magic_7f5bbc277d", "resource_type": "image"} \N \N 2021-05-20 12:06:53.323-03 2021-05-20 12:06:53.323-03 708 asylum.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523211/thumbnail_asylum_bcc363fdcc.jpg", "hash": "thumbnail_asylum_bcc363fdcc", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 5.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_asylum_bcc363fdcc", "resource_type": "image"}}} asylum_bcc363fdcc .jpg image/jpeg 373.61 https://res.cloudinary.com/won-games/image/upload/v1621523203/asylum_bcc363fdcc.jpg \N cloudinary {"public_id": "asylum_bcc363fdcc", "resource_type": "image"} \N \N 2021-05-20 12:06:53.355-03 2021-05-20 12:06:53.355-03 717 gestalt-steam-cinder.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_gestalt_steam_cinder_13a3eeb7d9.jpg", "hash": "thumbnail_gestalt_steam_cinder_13a3eeb7d9", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 10.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_13a3eeb7d9", "resource_type": "image"}}} gestalt_steam_cinder_13a3eeb7d9 .jpg image/jpeg 789.90 https://res.cloudinary.com/won-games/image/upload/v1621523205/gestalt_steam_cinder_13a3eeb7d9.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_13a3eeb7d9", "resource_type": "image"} \N \N 2021-05-20 12:06:53.705-03 2021-05-20 12:06:53.705-03 720 recompile.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_recompile_a3a1253abe.jpg", "hash": "thumbnail_recompile_a3a1253abe", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 5.55, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_recompile_a3a1253abe", "resource_type": "image"}}} recompile_a3a1253abe .jpg image/jpeg 189.44 https://res.cloudinary.com/won-games/image/upload/v1621523206/recompile_a3a1253abe.jpg \N cloudinary {"public_id": "recompile_a3a1253abe", "resource_type": "image"} \N \N 2021-05-20 12:06:53.766-03 2021-05-20 12:06:53.766-03 722 brok-the-investigator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_brok_the_investigator_512e9a5dba.jpg", "hash": "thumbnail_brok_the_investigator_512e9a5dba", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 16.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_512e9a5dba", "resource_type": "image"}}} brok_the_investigator_512e9a5dba .jpg image/jpeg 308.50 https://res.cloudinary.com/won-games/image/upload/v1621523206/brok_the_investigator_512e9a5dba.jpg \N cloudinary {"public_id": "brok_the_investigator_512e9a5dba", "resource_type": "image"} \N \N 2021-05-20 12:06:53.768-03 2021-05-20 12:06:53.768-03 733 master-of-magic.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_master_of_magic_7384b70cd6.jpg", "hash": "thumbnail_master_of_magic_7384b70cd6", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 8.48, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_master_of_magic_7384b70cd6", "resource_type": "image"}}} master_of_magic_7384b70cd6 .jpg image/jpeg 425.24 https://res.cloudinary.com/won-games/image/upload/v1621523207/master_of_magic_7384b70cd6.jpg \N cloudinary {"public_id": "master_of_magic_7384b70cd6", "resource_type": "image"} \N \N 2021-05-20 12:06:54.107-03 2021-05-20 12:06:54.107-03 735 unbound-worlds-apart.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_unbound_worlds_apart_5cb3df8914.jpg", "hash": "thumbnail_unbound_worlds_apart_5cb3df8914", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 4.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_5cb3df8914", "resource_type": "image"}}} unbound_worlds_apart_5cb3df8914 .jpg image/jpeg 1158.28 https://res.cloudinary.com/won-games/image/upload/v1621523207/unbound_worlds_apart_5cb3df8914.jpg \N cloudinary {"public_id": "unbound_worlds_apart_5cb3df8914", "resource_type": "image"} \N \N 2021-05-20 12:06:54.154-03 2021-05-20 12:06:54.154-03 736 recompile.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_recompile_7d8ba85544.jpg", "hash": "thumbnail_recompile_7d8ba85544", "mime": "image/jpeg", "name": "thumbnail_recompile.jpg", "path": null, "size": 7.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_recompile_7d8ba85544", "resource_type": "image"}}} recompile_7d8ba85544 .jpg image/jpeg 445.23 https://res.cloudinary.com/won-games/image/upload/v1621523207/recompile_7d8ba85544.jpg \N cloudinary {"public_id": "recompile_7d8ba85544", "resource_type": "image"} \N \N 2021-05-20 12:06:54.186-03 2021-05-20 12:06:54.186-03 737 strategic-mind-fight-for-freedom.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_strategic_mind_fight_for_freedom_f91232ec63.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_f91232ec63", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 9.87, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_f91232ec63", "resource_type": "image"}}} strategic_mind_fight_for_freedom_f91232ec63 .jpg image/jpeg 844.07 https://res.cloudinary.com/won-games/image/upload/v1621523206/strategic_mind_fight_for_freedom_f91232ec63.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_f91232ec63", "resource_type": "image"} \N \N 2021-05-20 12:06:54.227-03 2021-05-20 12:06:54.227-03 739 system-shock.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_system_shock_ad2ae65e13.jpg", "hash": "thumbnail_system_shock_ad2ae65e13", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 14.61, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_system_shock_ad2ae65e13", "resource_type": "image"}}} system_shock_ad2ae65e13 .jpg image/jpeg 725.05 https://res.cloudinary.com/won-games/image/upload/v1621523208/system_shock_ad2ae65e13.jpg \N cloudinary {"public_id": "system_shock_ad2ae65e13", "resource_type": "image"} \N \N 2021-05-20 12:06:54.255-03 2021-05-20 12:06:54.255-03 740 asylum.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_asylum_469bd06c16.jpg", "hash": "thumbnail_asylum_469bd06c16", "mime": "image/jpeg", "name": "thumbnail_asylum.jpg", "path": null, "size": 7.4, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_asylum_469bd06c16", "resource_type": "image"}}} asylum_469bd06c16 .jpg image/jpeg 601.22 https://res.cloudinary.com/won-games/image/upload/v1621523207/asylum_469bd06c16.jpg \N cloudinary {"public_id": "asylum_469bd06c16", "resource_type": "image"} \N \N 2021-05-20 12:06:54.333-03 2021-05-20 12:06:54.333-03 741 eldest-souls.jpg \N \N 5120 2880 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_eldest_souls_e5680bb03f.jpg", "hash": "thumbnail_eldest_souls_e5680bb03f", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 11.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_eldest_souls_e5680bb03f", "resource_type": "image"}}} eldest_souls_e5680bb03f .jpg image/jpeg 987.70 https://res.cloudinary.com/won-games/image/upload/v1621523207/eldest_souls_e5680bb03f.jpg \N cloudinary {"public_id": "eldest_souls_e5680bb03f", "resource_type": "image"} \N \N 2021-05-20 12:06:54.348-03 2021-05-20 12:06:54.348-03 743 strategic-mind-fight-for-freedom.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_strategic_mind_fight_for_freedom_95318feb9b.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_95318feb9b", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 10.49, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_95318feb9b", "resource_type": "image"}}} strategic_mind_fight_for_freedom_95318feb9b .jpg image/jpeg 748.27 https://res.cloudinary.com/won-games/image/upload/v1621523206/strategic_mind_fight_for_freedom_95318feb9b.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_95318feb9b", "resource_type": "image"} \N \N 2021-05-20 12:06:54.367-03 2021-05-20 12:06:54.367-03 744 resort.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_resort_e60dd2bb12.jpg", "hash": "thumbnail_resort_e60dd2bb12", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 6.65, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_resort_e60dd2bb12", "resource_type": "image"}}} resort_e60dd2bb12 .jpg image/jpeg 251.50 https://res.cloudinary.com/won-games/image/upload/v1621523208/resort_e60dd2bb12.jpg \N cloudinary {"public_id": "resort_e60dd2bb12", "resource_type": "image"} \N \N 2021-05-20 12:06:54.389-03 2021-05-20 12:06:54.389-03 724 guild-of-ascension.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_guild_of_ascension_6761a25644.jpg", "hash": "thumbnail_guild_of_ascension_6761a25644", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 9.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_6761a25644", "resource_type": "image"}}} guild_of_ascension_6761a25644 .jpg image/jpeg 535.75 https://res.cloudinary.com/won-games/image/upload/v1621523205/guild_of_ascension_6761a25644.jpg \N cloudinary {"public_id": "guild_of_ascension_6761a25644", "resource_type": "image"} \N \N 2021-05-20 12:06:53.824-03 2021-05-20 12:06:53.824-03 725 the-forgotten-city.jpg \N \N 1919 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_the_forgotten_city_12bb5a2dbd.jpg", "hash": "thumbnail_the_forgotten_city_12bb5a2dbd", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 10.25, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_12bb5a2dbd", "resource_type": "image"}}} the_forgotten_city_12bb5a2dbd .jpg image/jpeg 415.27 https://res.cloudinary.com/won-games/image/upload/v1621523205/the_forgotten_city_12bb5a2dbd.jpg \N cloudinary {"public_id": "the_forgotten_city_12bb5a2dbd", "resource_type": "image"} \N \N 2021-05-20 12:06:53.845-03 2021-05-20 12:06:53.845-03 726 master-of-magic.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_master_of_magic_c7fdc94d84.jpg", "hash": "thumbnail_master_of_magic_c7fdc94d84", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 7.77, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_master_of_magic_c7fdc94d84", "resource_type": "image"}}} master_of_magic_c7fdc94d84 .jpg image/jpeg 389.27 https://res.cloudinary.com/won-games/image/upload/v1621523206/master_of_magic_c7fdc94d84.jpg \N cloudinary {"public_id": "master_of_magic_c7fdc94d84", "resource_type": "image"} \N \N 2021-05-20 12:06:53.883-03 2021-05-20 12:06:53.883-03 727 eldest-souls.jpg \N \N 5120 2880 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_eldest_souls_80cdcc47ec.jpg", "hash": "thumbnail_eldest_souls_80cdcc47ec", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 6.64, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_eldest_souls_80cdcc47ec", "resource_type": "image"}}} eldest_souls_80cdcc47ec .jpg image/jpeg 588.17 https://res.cloudinary.com/won-games/image/upload/v1621523204/eldest_souls_80cdcc47ec.jpg \N cloudinary {"public_id": "eldest_souls_80cdcc47ec", "resource_type": "image"} \N \N 2021-05-20 12:06:53.933-03 2021-05-20 12:06:53.933-03 728 figment-creed-valley.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_figment_creed_valley_d6049938ca.jpg", "hash": "thumbnail_figment_creed_valley_d6049938ca", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 9.06, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_d6049938ca", "resource_type": "image"}}} figment_creed_valley_d6049938ca .jpg image/jpeg 542.87 https://res.cloudinary.com/won-games/image/upload/v1621523205/figment_creed_valley_d6049938ca.jpg \N cloudinary {"public_id": "figment_creed_valley_d6049938ca", "resource_type": "image"} \N \N 2021-05-20 12:06:53.965-03 2021-05-20 12:06:53.965-03 729 gestalt-steam-cinder.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_gestalt_steam_cinder_fec43fa95d.jpg", "hash": "thumbnail_gestalt_steam_cinder_fec43fa95d", "mime": "image/jpeg", "name": "thumbnail_gestalt-steam-cinder.jpg", "path": null, "size": 7.55, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gestalt_steam_cinder_fec43fa95d", "resource_type": "image"}}} gestalt_steam_cinder_fec43fa95d .jpg image/jpeg 621.56 https://res.cloudinary.com/won-games/image/upload/v1621523205/gestalt_steam_cinder_fec43fa95d.jpg \N cloudinary {"public_id": "gestalt_steam_cinder_fec43fa95d", "resource_type": "image"} \N \N 2021-05-20 12:06:54.001-03 2021-05-20 12:06:54.001-03 730 brok-the-investigator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_brok_the_investigator_0f3a23a7e8.jpg", "hash": "thumbnail_brok_the_investigator_0f3a23a7e8", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 14.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_0f3a23a7e8", "resource_type": "image"}}} brok_the_investigator_0f3a23a7e8 .jpg image/jpeg 321.98 https://res.cloudinary.com/won-games/image/upload/v1621523207/brok_the_investigator_0f3a23a7e8.jpg \N cloudinary {"public_id": "brok_the_investigator_0f3a23a7e8", "resource_type": "image"} \N \N 2021-05-20 12:06:54.061-03 2021-05-20 12:06:54.061-03 734 a-jugglers-tale.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_a_jugglers_tale_9c584213c3.jpg", "hash": "thumbnail_a_jugglers_tale_9c584213c3", "mime": "image/jpeg", "name": "thumbnail_a-jugglers-tale.jpg", "path": null, "size": 6.77, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_a_jugglers_tale_9c584213c3", "resource_type": "image"}}} a_jugglers_tale_9c584213c3 .jpg image/jpeg 399.78 https://res.cloudinary.com/won-games/image/upload/v1621523205/a_jugglers_tale_9c584213c3.jpg \N cloudinary {"public_id": "a_jugglers_tale_9c584213c3", "resource_type": "image"} \N \N 2021-05-20 12:06:54.108-03 2021-05-20 12:06:54.108-03 738 master-of-magic.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_master_of_magic_edcae365be.jpg", "hash": "thumbnail_master_of_magic_edcae365be", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 6.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_master_of_magic_edcae365be", "resource_type": "image"}}} master_of_magic_edcae365be .jpg image/jpeg 422.09 https://res.cloudinary.com/won-games/image/upload/v1621523208/master_of_magic_edcae365be.jpg \N cloudinary {"public_id": "master_of_magic_edcae365be", "resource_type": "image"} \N \N 2021-05-20 12:06:54.254-03 2021-05-20 12:06:54.254-03 742 farlanders.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_farlanders_eaf34bc67a.jpg", "hash": "thumbnail_farlanders_eaf34bc67a", "mime": "image/jpeg", "name": "thumbnail_farlanders.jpg", "path": null, "size": 12.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_farlanders_eaf34bc67a", "resource_type": "image"}}} farlanders_eaf34bc67a .jpg image/jpeg 1021.79 https://res.cloudinary.com/won-games/image/upload/v1621523205/farlanders_eaf34bc67a.jpg \N cloudinary {"public_id": "farlanders_eaf34bc67a", "resource_type": "image"} \N \N 2021-05-20 12:06:54.367-03 2021-05-20 12:06:54.367-03 731 figment-creed-valley.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_figment_creed_valley_a94dabc381.jpg", "hash": "thumbnail_figment_creed_valley_a94dabc381", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 8.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_a94dabc381", "resource_type": "image"}}} figment_creed_valley_a94dabc381 .jpg image/jpeg 483.31 https://res.cloudinary.com/won-games/image/upload/v1621523206/figment_creed_valley_a94dabc381.jpg \N cloudinary {"public_id": "figment_creed_valley_a94dabc381", "resource_type": "image"} \N \N 2021-05-20 12:06:54.07-03 2021-05-20 12:06:54.07-03 732 resort.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_resort_06907b4d94.jpg", "hash": "thumbnail_resort_06907b4d94", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 6.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_resort_06907b4d94", "resource_type": "image"}}} resort_06907b4d94 .jpg image/jpeg 334.34 https://res.cloudinary.com/won-games/image/upload/v1621523208/resort_06907b4d94.jpg \N cloudinary {"public_id": "resort_06907b4d94", "resource_type": "image"} \N \N 2021-05-20 12:06:54.098-03 2021-05-20 12:06:54.098-03 756 gloomwood.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_gloomwood_3132b10b6e.jpg", "hash": "thumbnail_gloomwood_3132b10b6e", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 7.19, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gloomwood_3132b10b6e", "resource_type": "image"}}} gloomwood_3132b10b6e .jpg image/jpeg 618.04 https://res.cloudinary.com/won-games/image/upload/v1621523207/gloomwood_3132b10b6e.jpg \N cloudinary {"public_id": "gloomwood_3132b10b6e", "resource_type": "image"} \N \N 2021-05-20 12:06:54.686-03 2021-05-20 12:06:54.686-03 757 resort.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_resort_a06846f56e.jpg", "hash": "thumbnail_resort_a06846f56e", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 8.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_resort_a06846f56e", "resource_type": "image"}}} resort_a06846f56e .jpg image/jpeg 595.67 https://res.cloudinary.com/won-games/image/upload/v1621523210/resort_a06846f56e.jpg \N cloudinary {"public_id": "resort_a06846f56e", "resource_type": "image"} \N \N 2021-05-20 12:06:54.705-03 2021-05-20 12:06:54.705-03 758 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 9.38, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd .jpg image/jpeg 365.26 https://res.cloudinary.com/won-games/image/upload/v1621523209/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_6b6fcf45dd", "resource_type": "image"} \N \N 2021-05-20 12:06:54.715-03 2021-05-20 12:06:54.715-03 759 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 8.56, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7 .jpg image/jpeg 391.64 https://res.cloudinary.com/won-games/image/upload/v1621523209/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_96917fc9f7", "resource_type": "image"} \N \N 2021-05-20 12:06:54.782-03 2021-05-20 12:06:54.782-03 766 pharaoh-a-new-era.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_pharaoh_a_new_era_0503753245.jpg", "hash": "thumbnail_pharaoh_a_new_era_0503753245", "mime": "image/jpeg", "name": "thumbnail_pharaoh-a-new-era.jpg", "path": null, "size": 14.21, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_pharaoh_a_new_era_0503753245", "resource_type": "image"}}} pharaoh_a_new_era_0503753245 .jpg image/jpeg 1466.15 https://res.cloudinary.com/won-games/image/upload/v1621523209/pharaoh_a_new_era_0503753245.jpg \N cloudinary {"public_id": "pharaoh_a_new_era_0503753245", "resource_type": "image"} \N \N 2021-05-20 12:06:54.999-03 2021-05-20 12:06:54.999-03 779 eldest-souls.jpg \N \N 5120 2880 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_eldest_souls_bb9d29ba1c.jpg", "hash": "thumbnail_eldest_souls_bb9d29ba1c", "mime": "image/jpeg", "name": "thumbnail_eldest-souls.jpg", "path": null, "size": 12.41, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_eldest_souls_bb9d29ba1c", "resource_type": "image"}}} eldest_souls_bb9d29ba1c .jpg image/jpeg 1053.17 https://res.cloudinary.com/won-games/image/upload/v1621523210/eldest_souls_bb9d29ba1c.jpg \N cloudinary {"public_id": "eldest_souls_bb9d29ba1c", "resource_type": "image"} \N \N 2021-05-20 12:06:55.13-03 2021-05-20 12:06:55.13-03 782 astria-ascending.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_astria_ascending_3f5d59ddca.jpg", "hash": "thumbnail_astria_ascending_3f5d59ddca", "mime": "image/jpeg", "name": "thumbnail_astria-ascending.jpg", "path": null, "size": 9.54, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astria_ascending_3f5d59ddca", "resource_type": "image"}}} astria_ascending_3f5d59ddca .jpg image/jpeg 1054.96 https://res.cloudinary.com/won-games/image/upload/v1621523209/astria_ascending_3f5d59ddca.jpg \N cloudinary {"public_id": "astria_ascending_3f5d59ddca", "resource_type": "image"} \N \N 2021-05-20 12:06:55.211-03 2021-05-20 12:06:55.211-03 804 myst.jpg \N \N 5760 3240 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_myst_058a4cacf1.jpg", "hash": "thumbnail_myst_058a4cacf1", "mime": "image/jpeg", "name": "thumbnail_myst.jpg", "path": null, "size": 14.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_myst_058a4cacf1", "resource_type": "image"}}} myst_058a4cacf1 .jpg image/jpeg 2483.66 https://res.cloudinary.com/won-games/image/upload/v1621523213/myst_058a4cacf1.jpg \N cloudinary {"public_id": "myst_058a4cacf1", "resource_type": "image"} \N \N 2021-05-20 12:06:56.223-03 2021-05-20 12:06:56.223-03 745 strategic-mind-fight-for-freedom.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523212/thumbnail_strategic_mind_fight_for_freedom_9fdbaf2f10.jpg", "hash": "thumbnail_strategic_mind_fight_for_freedom_9fdbaf2f10", "mime": "image/jpeg", "name": "thumbnail_strategic-mind-fight-for-freedom.jpg", "path": null, "size": 10.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strategic_mind_fight_for_freedom_9fdbaf2f10", "resource_type": "image"}}} strategic_mind_fight_for_freedom_9fdbaf2f10 .jpg image/jpeg 750.39 https://res.cloudinary.com/won-games/image/upload/v1621523206/strategic_mind_fight_for_freedom_9fdbaf2f10.jpg \N cloudinary {"public_id": "strategic_mind_fight_for_freedom_9fdbaf2f10", "resource_type": "image"} \N \N 2021-05-20 12:06:54.43-03 2021-05-20 12:06:54.43-03 747 warhammer-40000-battlesector.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_warhammer_40000_battlesector_cccb43e02a.jpg", "hash": "thumbnail_warhammer_40000_battlesector_cccb43e02a", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 7.21, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_cccb43e02a", "resource_type": "image"}}} warhammer_40000_battlesector_cccb43e02a .jpg image/jpeg 589.63 https://res.cloudinary.com/won-games/image/upload/v1621523208/warhammer_40000_battlesector_cccb43e02a.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_cccb43e02a", "resource_type": "image"} \N \N 2021-05-20 12:06:54.45-03 2021-05-20 12:06:54.45-03 748 strangeland.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_strangeland_209abf82ff.jpg", "hash": "thumbnail_strangeland_209abf82ff", "mime": "image/jpeg", "name": "thumbnail_strangeland.jpg", "path": null, "size": 10.43, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_strangeland_209abf82ff", "resource_type": "image"}}} strangeland_209abf82ff .jpg image/jpeg 457.09 https://res.cloudinary.com/won-games/image/upload/v1621523208/strangeland_209abf82ff.jpg \N cloudinary {"public_id": "strangeland_209abf82ff", "resource_type": "image"} \N \N 2021-05-20 12:06:54.466-03 2021-05-20 12:06:54.466-03 749 brok-the-investigator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_brok_the_investigator_d66482651d.jpg", "hash": "thumbnail_brok_the_investigator_d66482651d", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 18.59, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_d66482651d", "resource_type": "image"}}} brok_the_investigator_d66482651d .jpg image/jpeg 467.70 https://res.cloudinary.com/won-games/image/upload/v1621523207/brok_the_investigator_d66482651d.jpg \N cloudinary {"public_id": "brok_the_investigator_d66482651d", "resource_type": "image"} \N \N 2021-05-20 12:06:54.505-03 2021-05-20 12:06:54.505-03 750 curved-space.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_curved_space_644fccfafe.jpg", "hash": "thumbnail_curved_space_644fccfafe", "mime": "image/jpeg", "name": "thumbnail_curved-space.jpg", "path": null, "size": 12.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_curved_space_644fccfafe", "resource_type": "image"}}} curved_space_644fccfafe .jpg image/jpeg 545.90 https://res.cloudinary.com/won-games/image/upload/v1621523207/curved_space_644fccfafe.jpg \N cloudinary {"public_id": "curved_space_644fccfafe", "resource_type": "image"} \N \N 2021-05-20 12:06:54.56-03 2021-05-20 12:06:54.56-03 751 system-shock.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_system_shock_5819d9e8bc.jpg", "hash": "thumbnail_system_shock_5819d9e8bc", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 13.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_system_shock_5819d9e8bc", "resource_type": "image"}}} system_shock_5819d9e8bc .jpg image/jpeg 818.76 https://res.cloudinary.com/won-games/image/upload/v1621523209/system_shock_5819d9e8bc.jpg \N cloudinary {"public_id": "system_shock_5819d9e8bc", "resource_type": "image"} \N \N 2021-05-20 12:06:54.579-03 2021-05-20 12:06:54.579-03 752 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 9.74, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5 .jpg image/jpeg 406.02 https://res.cloudinary.com/won-games/image/upload/v1621523210/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_fa541c5cc5", "resource_type": "image"} \N \N 2021-05-20 12:06:54.603-03 2021-05-20 12:06:54.603-03 753 realms-beyond-ashes-of-the-fallen.jpg \N \N 1440 734 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_realms_beyond_ashes_of_the_fallen_eeed91610c.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_eeed91610c", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 24.01, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_eeed91610c", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_eeed91610c .jpg image/jpeg 632.25 https://res.cloudinary.com/won-games/image/upload/v1621523209/realms_beyond_ashes_of_the_fallen_eeed91610c.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_eeed91610c", "resource_type": "image"} \N \N 2021-05-20 12:06:54.622-03 2021-05-20 12:06:54.622-03 755 dark-envoy.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_dark_envoy_2db5f29e62.jpg", "hash": "thumbnail_dark_envoy_2db5f29e62", "mime": "image/jpeg", "name": "thumbnail_dark-envoy.jpg", "path": null, "size": 9.39, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dark_envoy_2db5f29e62", "resource_type": "image"}}} dark_envoy_2db5f29e62 .jpg image/jpeg 959.02 https://res.cloudinary.com/won-games/image/upload/v1621523208/dark_envoy_2db5f29e62.jpg \N cloudinary {"public_id": "dark_envoy_2db5f29e62", "resource_type": "image"} \N \N 2021-05-20 12:06:54.671-03 2021-05-20 12:06:54.671-03 746 gloomwood.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_gloomwood_e7268d74b9.jpg", "hash": "thumbnail_gloomwood_e7268d74b9", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 5.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gloomwood_e7268d74b9", "resource_type": "image"}}} gloomwood_e7268d74b9 .jpg image/jpeg 495.23 https://res.cloudinary.com/won-games/image/upload/v1621523207/gloomwood_e7268d74b9.jpg \N cloudinary {"public_id": "gloomwood_e7268d74b9", "resource_type": "image"} \N \N 2021-05-20 12:06:54.44-03 2021-05-20 12:06:54.44-03 754 astalon-tears-of-the-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_astalon_tears_of_the_earth_400a247e4e.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_400a247e4e", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 9.3, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_400a247e4e", "resource_type": "image"}}} astalon_tears_of_the_earth_400a247e4e .jpg image/jpeg 271.13 https://res.cloudinary.com/won-games/image/upload/v1621523208/astalon_tears_of_the_earth_400a247e4e.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_400a247e4e", "resource_type": "image"} \N \N 2021-05-20 12:06:54.671-03 2021-05-20 12:06:54.671-03 768 astria-ascending.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_astria_ascending_87e663f365.jpg", "hash": "thumbnail_astria_ascending_87e663f365", "mime": "image/jpeg", "name": "thumbnail_astria-ascending.jpg", "path": null, "size": 12.29, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astria_ascending_87e663f365", "resource_type": "image"}}} astria_ascending_87e663f365 .jpg image/jpeg 1453.15 https://res.cloudinary.com/won-games/image/upload/v1621523210/astria_ascending_87e663f365.jpg \N cloudinary {"public_id": "astria_ascending_87e663f365", "resource_type": "image"} \N \N 2021-05-20 12:06:55.007-03 2021-05-20 12:06:55.007-03 770 astalon-tears-of-the-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_astalon_tears_of_the_earth_7d9de76562.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_7d9de76562", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 11.34, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_7d9de76562", "resource_type": "image"}}} astalon_tears_of_the_earth_7d9de76562 .jpg image/jpeg 379.22 https://res.cloudinary.com/won-games/image/upload/v1621523209/astalon_tears_of_the_earth_7d9de76562.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_7d9de76562", "resource_type": "image"} \N \N 2021-05-20 12:06:55.034-03 2021-05-20 12:06:55.034-03 772 realms-beyond-ashes-of-the-fallen.jpg \N \N 1782 902 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_realms_beyond_ashes_of_the_fallen_d3b5146281.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_d3b5146281", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 29.72, "width": 245, "height": 124, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_d3b5146281", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_d3b5146281 .jpg image/jpeg 840.28 https://res.cloudinary.com/won-games/image/upload/v1621523211/realms_beyond_ashes_of_the_fallen_d3b5146281.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_d3b5146281", "resource_type": "image"} \N \N 2021-05-20 12:06:55.051-03 2021-05-20 12:06:55.051-03 773 unbound-worlds-apart.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_unbound_worlds_apart_51c668c60f.jpg", "hash": "thumbnail_unbound_worlds_apart_51c668c60f", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 5.98, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_51c668c60f", "resource_type": "image"}}} unbound_worlds_apart_51c668c60f .jpg image/jpeg 1468.43 https://res.cloudinary.com/won-games/image/upload/v1621523208/unbound_worlds_apart_51c668c60f.jpg \N cloudinary {"public_id": "unbound_worlds_apart_51c668c60f", "resource_type": "image"} \N \N 2021-05-20 12:06:55.068-03 2021-05-20 12:06:55.068-03 775 warhammer-40000-battlesector.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_warhammer_40000_battlesector_883c437f6c.jpg", "hash": "thumbnail_warhammer_40000_battlesector_883c437f6c", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 7.95, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_883c437f6c", "resource_type": "image"}}} warhammer_40000_battlesector_883c437f6c .jpg image/jpeg 573.62 https://res.cloudinary.com/won-games/image/upload/v1621523210/warhammer_40000_battlesector_883c437f6c.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_883c437f6c", "resource_type": "image"} \N \N 2021-05-20 12:06:55.117-03 2021-05-20 12:06:55.117-03 760 saint-kotar.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_saint_kotar_fb699785f7.jpg", "hash": "thumbnail_saint_kotar_fb699785f7", "mime": "image/jpeg", "name": "thumbnail_saint-kotar.jpg", "path": null, "size": 34.02, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_saint_kotar_fb699785f7", "resource_type": "image"}}} saint_kotar_fb699785f7 .jpg image/jpeg 1093.04 https://res.cloudinary.com/won-games/image/upload/v1621523207/saint_kotar_fb699785f7.jpg \N cloudinary {"public_id": "saint_kotar_fb699785f7", "resource_type": "image"} \N \N 2021-05-20 12:06:54.79-03 2021-05-20 12:06:54.79-03 761 system-shock.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_system_shock_e297fda8e1.jpg", "hash": "thumbnail_system_shock_e297fda8e1", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 16.38, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_system_shock_e297fda8e1", "resource_type": "image"}}} system_shock_e297fda8e1 .jpg image/jpeg 1025.28 https://res.cloudinary.com/won-games/image/upload/v1621523208/system_shock_e297fda8e1.jpg \N cloudinary {"public_id": "system_shock_e297fda8e1", "resource_type": "image"} \N \N 2021-05-20 12:06:54.808-03 2021-05-20 12:06:54.808-03 762 master-of-magic.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_master_of_magic_94431f90b2.jpg", "hash": "thumbnail_master_of_magic_94431f90b2", "mime": "image/jpeg", "name": "thumbnail_master-of-magic.jpg", "path": null, "size": 8.27, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_master_of_magic_94431f90b2", "resource_type": "image"}}} master_of_magic_94431f90b2 .jpg image/jpeg 461.19 https://res.cloudinary.com/won-games/image/upload/v1621523208/master_of_magic_94431f90b2.jpg \N cloudinary {"public_id": "master_of_magic_94431f90b2", "resource_type": "image"} \N \N 2021-05-20 12:06:54.845-03 2021-05-20 12:06:54.845-03 763 potion-craft-alchemist-simulator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_potion_craft_alchemist_simulator_46f84406f7.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_46f84406f7", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 11.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_46f84406f7", "resource_type": "image"}}} potion_craft_alchemist_simulator_46f84406f7 .jpg image/jpeg 1077.00 https://res.cloudinary.com/won-games/image/upload/v1621523208/potion_craft_alchemist_simulator_46f84406f7.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_46f84406f7", "resource_type": "image"} \N \N 2021-05-20 12:06:54.902-03 2021-05-20 12:06:54.902-03 764 hoa.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_hoa_e636f7c23d.jpg", "hash": "thumbnail_hoa_e636f7c23d", "mime": "image/jpeg", "name": "thumbnail_hoa.jpg", "path": null, "size": 4.32, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_hoa_e636f7c23d", "resource_type": "image"}}} hoa_e636f7c23d .jpg image/jpeg 257.56 https://res.cloudinary.com/won-games/image/upload/v1621523208/hoa_e636f7c23d.jpg \N cloudinary {"public_id": "hoa_e636f7c23d", "resource_type": "image"} \N \N 2021-05-20 12:06:54.925-03 2021-05-20 12:06:54.925-03 765 warhammer-40000-battlesector.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_warhammer_40000_battlesector_8372794aae.jpg", "hash": "thumbnail_warhammer_40000_battlesector_8372794aae", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 10.07, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_8372794aae", "resource_type": "image"}}} warhammer_40000_battlesector_8372794aae .jpg image/jpeg 715.00 https://res.cloudinary.com/won-games/image/upload/v1621523210/warhammer_40000_battlesector_8372794aae.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_8372794aae", "resource_type": "image"} \N \N 2021-05-20 12:06:54.938-03 2021-05-20 12:06:54.938-03 767 figment-creed-valley.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_figment_creed_valley_bfa130820b.jpg", "hash": "thumbnail_figment_creed_valley_bfa130820b", "mime": "image/jpeg", "name": "thumbnail_figment-creed-valley.jpg", "path": null, "size": 10.52, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_figment_creed_valley_bfa130820b", "resource_type": "image"}}} figment_creed_valley_bfa130820b .jpg image/jpeg 635.18 https://res.cloudinary.com/won-games/image/upload/v1621523210/figment_creed_valley_bfa130820b.jpg \N cloudinary {"public_id": "figment_creed_valley_bfa130820b", "resource_type": "image"} \N \N 2021-05-20 12:06:55-03 2021-05-20 12:06:55-03 769 vampire-the-masquerade-bloodlines-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_vampire_the_masquerade_bloodlines_2_55a1329b69.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_55a1329b69", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 7.04, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_55a1329b69", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_55a1329b69 .jpg image/jpeg 2238.61 https://res.cloudinary.com/won-games/image/upload/v1621523209/vampire_the_masquerade_bloodlines_2_55a1329b69.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_55a1329b69", "resource_type": "image"} \N \N 2021-05-20 12:06:55.021-03 2021-05-20 12:06:55.021-03 771 gloomwood.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_gloomwood_cce18e3504.jpg", "hash": "thumbnail_gloomwood_cce18e3504", "mime": "image/jpeg", "name": "thumbnail_gloomwood.jpg", "path": null, "size": 9.73, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_gloomwood_cce18e3504", "resource_type": "image"}}} gloomwood_cce18e3504 .jpg image/jpeg 1289.36 https://res.cloudinary.com/won-games/image/upload/v1621523211/gloomwood_cce18e3504.jpg \N cloudinary {"public_id": "gloomwood_cce18e3504", "resource_type": "image"} \N \N 2021-05-20 12:06:55.045-03 2021-05-20 12:06:55.045-03 774 intravenous.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_intravenous_f0d37947ea.jpg", "hash": "thumbnail_intravenous_f0d37947ea", "mime": "image/jpeg", "name": "thumbnail_intravenous.jpg", "path": null, "size": 6.72, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_intravenous_f0d37947ea", "resource_type": "image"}}} intravenous_f0d37947ea .jpg image/jpeg 1047.97 https://res.cloudinary.com/won-games/image/upload/v1621523209/intravenous_f0d37947ea.jpg \N cloudinary {"public_id": "intravenous_f0d37947ea", "resource_type": "image"} \N \N 2021-05-20 12:06:55.073-03 2021-05-20 12:06:55.073-03 776 warhammer-40000-battlesector.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_warhammer_40000_battlesector_49f222d676.jpg", "hash": "thumbnail_warhammer_40000_battlesector_49f222d676", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 7.49, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_49f222d676", "resource_type": "image"}}} warhammer_40000_battlesector_49f222d676 .jpg image/jpeg 674.44 https://res.cloudinary.com/won-games/image/upload/v1621523209/warhammer_40000_battlesector_49f222d676.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_49f222d676", "resource_type": "image"} \N \N 2021-05-20 12:06:55.117-03 2021-05-20 12:06:55.117-03 783 warhammer-40000-battlesector.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_warhammer_40000_battlesector_45d28f99e8.jpg", "hash": "thumbnail_warhammer_40000_battlesector_45d28f99e8", "mime": "image/jpeg", "name": "thumbnail_warhammer-40000-battlesector.jpg", "path": null, "size": 7.53, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_warhammer_40000_battlesector_45d28f99e8", "resource_type": "image"}}} warhammer_40000_battlesector_45d28f99e8 .jpg image/jpeg 709.68 https://res.cloudinary.com/won-games/image/upload/v1621523211/warhammer_40000_battlesector_45d28f99e8.jpg \N cloudinary {"public_id": "warhammer_40000_battlesector_45d28f99e8", "resource_type": "image"} \N \N 2021-05-20 12:06:55.314-03 2021-05-20 12:06:55.314-03 785 zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082.jpg", "hash": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082", "mime": "image/jpeg", "name": "thumbnail_zombies-ate-my-neighbors-and-ghoul-patrol-bundle.jpg", "path": null, "size": 9.66, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082", "resource_type": "image"}}} zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082 .jpg image/jpeg 381.55 https://res.cloudinary.com/won-games/image/upload/v1621523209/zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082.jpg \N cloudinary {"public_id": "zombies_ate_my_neighbors_and_ghoul_patrol_bundle_1de01b9082", "resource_type": "image"} \N \N 2021-05-20 12:06:55.35-03 2021-05-20 12:06:55.35-03 784 astalon-tears-of-the-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_astalon_tears_of_the_earth_e014f1bee6.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_e014f1bee6", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 12.93, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_e014f1bee6", "resource_type": "image"}}} astalon_tears_of_the_earth_e014f1bee6 .jpg image/jpeg 488.36 https://res.cloudinary.com/won-games/image/upload/v1621523211/astalon_tears_of_the_earth_e014f1bee6.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_e014f1bee6", "resource_type": "image"} \N \N 2021-05-20 12:06:55.315-03 2021-05-20 12:06:55.315-03 786 vampire-the-masquerade-bloodlines-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_vampire_the_masquerade_bloodlines_2_39d7cb0d0f.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_39d7cb0d0f", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 6.42, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_39d7cb0d0f", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_39d7cb0d0f .jpg image/jpeg 1721.70 https://res.cloudinary.com/won-games/image/upload/v1621523210/vampire_the_masquerade_bloodlines_2_39d7cb0d0f.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_39d7cb0d0f", "resource_type": "image"} \N \N 2021-05-20 12:06:55.351-03 2021-05-20 12:06:55.351-03 790 vampire-the-masquerade-bloodlines-2.jpg \N \N 2659 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_vampire_the_masquerade_bloodlines_2_5e2f81b525.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_5e2f81b525", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 5.62, "width": 245, "height": 133, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_5e2f81b525", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_5e2f81b525 .jpg image/jpeg 2245.76 https://res.cloudinary.com/won-games/image/upload/v1621523210/vampire_the_masquerade_bloodlines_2_5e2f81b525.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_5e2f81b525", "resource_type": "image"} \N \N 2021-05-20 12:06:55.407-03 2021-05-20 12:06:55.407-03 797 dark-envoy.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_dark_envoy_b3d20e4d24.jpg", "hash": "thumbnail_dark_envoy_b3d20e4d24", "mime": "image/jpeg", "name": "thumbnail_dark-envoy.jpg", "path": null, "size": 8.44, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dark_envoy_b3d20e4d24", "resource_type": "image"}}} dark_envoy_b3d20e4d24 .jpg image/jpeg 1453.26 https://res.cloudinary.com/won-games/image/upload/v1621523212/dark_envoy_b3d20e4d24.jpg \N cloudinary {"public_id": "dark_envoy_b3d20e4d24", "resource_type": "image"} \N \N 2021-05-20 12:06:55.744-03 2021-05-20 12:06:55.744-03 805 edge-of-eternity.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_edge_of_eternity_f8faa1eac7.jpg", "hash": "thumbnail_edge_of_eternity_f8faa1eac7", "mime": "image/jpeg", "name": "thumbnail_edge-of-eternity.jpg", "path": null, "size": 8.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_edge_of_eternity_f8faa1eac7", "resource_type": "image"}}} edge_of_eternity_f8faa1eac7 .jpg image/jpeg 1348.82 https://res.cloudinary.com/won-games/image/upload/v1621523213/edge_of_eternity_f8faa1eac7.jpg \N cloudinary {"public_id": "edge_of_eternity_f8faa1eac7", "resource_type": "image"} \N \N 2021-05-20 12:06:56.227-03 2021-05-20 12:06:56.227-03 806 potion-craft-alchemist-simulator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_potion_craft_alchemist_simulator_97a64ad768.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_97a64ad768", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 9.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_97a64ad768", "resource_type": "image"}}} potion_craft_alchemist_simulator_97a64ad768 .jpg image/jpeg 970.48 https://res.cloudinary.com/won-games/image/upload/v1621523210/potion_craft_alchemist_simulator_97a64ad768.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_97a64ad768", "resource_type": "image"} \N \N 2021-05-20 12:06:56.303-03 2021-05-20 12:06:56.303-03 807 unbound-worlds-apart.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_unbound_worlds_apart_58f606674a.jpg", "hash": "thumbnail_unbound_worlds_apart_58f606674a", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 5.12, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_58f606674a", "resource_type": "image"}}} unbound_worlds_apart_58f606674a .jpg image/jpeg 1284.86 https://res.cloudinary.com/won-games/image/upload/v1621523212/unbound_worlds_apart_58f606674a.jpg \N cloudinary {"public_id": "unbound_worlds_apart_58f606674a", "resource_type": "image"} \N \N 2021-05-20 12:06:56.317-03 2021-05-20 12:06:56.317-03 793 brok-the-investigator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_brok_the_investigator_ea3e229164.jpg", "hash": "thumbnail_brok_the_investigator_ea3e229164", "mime": "image/jpeg", "name": "thumbnail_brok-the-investigator.jpg", "path": null, "size": 21, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_brok_the_investigator_ea3e229164", "resource_type": "image"}}} brok_the_investigator_ea3e229164 .jpg image/jpeg 497.46 https://res.cloudinary.com/won-games/image/upload/v1621523213/brok_the_investigator_ea3e229164.jpg \N cloudinary {"public_id": "brok_the_investigator_ea3e229164", "resource_type": "image"} \N \N 2021-05-20 12:06:55.578-03 2021-05-20 12:06:55.578-03 794 imagine-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_imagine_earth_3d2471ec51.jpg", "hash": "thumbnail_imagine_earth_3d2471ec51", "mime": "image/jpeg", "name": "thumbnail_imagine-earth.jpg", "path": null, "size": 29.36, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_imagine_earth_3d2471ec51", "resource_type": "image"}}} imagine_earth_3d2471ec51 .jpg image/jpeg 419.16 https://res.cloudinary.com/won-games/image/upload/v1621523211/imagine_earth_3d2471ec51.jpg \N cloudinary {"public_id": "imagine_earth_3d2471ec51", "resource_type": "image"} \N \N 2021-05-20 12:06:55.608-03 2021-05-20 12:06:55.608-03 795 imagine-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_imagine_earth_480a8515c4.jpg", "hash": "thumbnail_imagine_earth_480a8515c4", "mime": "image/jpeg", "name": "thumbnail_imagine-earth.jpg", "path": null, "size": 26.81, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_imagine_earth_480a8515c4", "resource_type": "image"}}} imagine_earth_480a8515c4 .jpg image/jpeg 506.46 https://res.cloudinary.com/won-games/image/upload/v1621523213/imagine_earth_480a8515c4.jpg \N cloudinary {"public_id": "imagine_earth_480a8515c4", "resource_type": "image"} \N \N 2021-05-20 12:06:55.655-03 2021-05-20 12:06:55.655-03 796 realms-beyond-ashes-of-the-fallen.jpg \N \N 1831 931 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_realms_beyond_ashes_of_the_fallen_083bfbc549.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_083bfbc549", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 32.72, "width": 245, "height": 125, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_083bfbc549", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_083bfbc549 .jpg image/jpeg 1530.78 https://res.cloudinary.com/won-games/image/upload/v1621523212/realms_beyond_ashes_of_the_fallen_083bfbc549.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_083bfbc549", "resource_type": "image"} \N \N 2021-05-20 12:06:55.703-03 2021-05-20 12:06:55.703-03 798 system-shock.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_system_shock_510f6371d3.jpg", "hash": "thumbnail_system_shock_510f6371d3", "mime": "image/jpeg", "name": "thumbnail_system-shock.jpg", "path": null, "size": 20.58, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_system_shock_510f6371d3", "resource_type": "image"}}} system_shock_510f6371d3 .jpg image/jpeg 1283.64 https://res.cloudinary.com/won-games/image/upload/v1621523212/system_shock_510f6371d3.jpg \N cloudinary {"public_id": "system_shock_510f6371d3", "resource_type": "image"} \N \N 2021-05-20 12:06:55.744-03 2021-05-20 12:06:55.744-03 799 myst.jpg \N \N 5760 3240 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_myst_67f352b567.jpg", "hash": "thumbnail_myst_67f352b567", "mime": "image/jpeg", "name": "thumbnail_myst.jpg", "path": null, "size": 10.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_myst_67f352b567", "resource_type": "image"}}} myst_67f352b567 .jpg image/jpeg 1534.86 https://res.cloudinary.com/won-games/image/upload/v1621523211/myst_67f352b567.jpg \N cloudinary {"public_id": "myst_67f352b567", "resource_type": "image"} \N \N 2021-05-20 12:06:55.768-03 2021-05-20 12:06:55.768-03 800 iron-harvest-operation-eagle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_iron_harvest_operation_eagle_b9fc8a9b13.jpg", "hash": "thumbnail_iron_harvest_operation_eagle_b9fc8a9b13", "mime": "image/jpeg", "name": "thumbnail_iron-harvest-operation-eagle.jpg", "path": null, "size": 11.41, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_iron_harvest_operation_eagle_b9fc8a9b13", "resource_type": "image"}}} iron_harvest_operation_eagle_b9fc8a9b13 .jpg image/jpeg 864.02 https://res.cloudinary.com/won-games/image/upload/v1621523212/iron_harvest_operation_eagle_b9fc8a9b13.jpg \N cloudinary {"public_id": "iron_harvest_operation_eagle_b9fc8a9b13", "resource_type": "image"} \N \N 2021-05-20 12:06:55.89-03 2021-05-20 12:06:55.89-03 801 astalon-tears-of-the-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_astalon_tears_of_the_earth_c33cd7c483.jpg", "hash": "thumbnail_astalon_tears_of_the_earth_c33cd7c483", "mime": "image/jpeg", "name": "thumbnail_astalon-tears-of-the-earth.jpg", "path": null, "size": 10.99, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astalon_tears_of_the_earth_c33cd7c483", "resource_type": "image"}}} astalon_tears_of_the_earth_c33cd7c483 .jpg image/jpeg 446.89 https://res.cloudinary.com/won-games/image/upload/v1621523210/astalon_tears_of_the_earth_c33cd7c483.jpg \N cloudinary {"public_id": "astalon_tears_of_the_earth_c33cd7c483", "resource_type": "image"} \N \N 2021-05-20 12:06:55.904-03 2021-05-20 12:06:55.904-03 802 astria-ascending.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_astria_ascending_a2edcc49a9.jpg", "hash": "thumbnail_astria_ascending_a2edcc49a9", "mime": "image/jpeg", "name": "thumbnail_astria-ascending.jpg", "path": null, "size": 9.81, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astria_ascending_a2edcc49a9", "resource_type": "image"}}} astria_ascending_a2edcc49a9 .jpg image/jpeg 1143.23 https://res.cloudinary.com/won-games/image/upload/v1621523213/astria_ascending_a2edcc49a9.jpg \N cloudinary {"public_id": "astria_ascending_a2edcc49a9", "resource_type": "image"} \N \N 2021-05-20 12:06:55.943-03 2021-05-20 12:06:55.943-03 803 the-forgotten-city.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523213/thumbnail_the_forgotten_city_bde352a688.jpg", "hash": "thumbnail_the_forgotten_city_bde352a688", "mime": "image/jpeg", "name": "thumbnail_the-forgotten-city.jpg", "path": null, "size": 9.25, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_the_forgotten_city_bde352a688", "resource_type": "image"}}} the_forgotten_city_bde352a688 .jpg image/jpeg 561.96 https://res.cloudinary.com/won-games/image/upload/v1621523208/the_forgotten_city_bde352a688.jpg \N cloudinary {"public_id": "the_forgotten_city_bde352a688", "resource_type": "image"} \N \N 2021-05-20 12:06:56.043-03 2021-05-20 12:06:56.043-03 808 iron-harvest-operation-eagle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_iron_harvest_operation_eagle_3bfe3d7874.jpg", "hash": "thumbnail_iron_harvest_operation_eagle_3bfe3d7874", "mime": "image/jpeg", "name": "thumbnail_iron-harvest-operation-eagle.jpg", "path": null, "size": 10.85, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_iron_harvest_operation_eagle_3bfe3d7874", "resource_type": "image"}}} iron_harvest_operation_eagle_3bfe3d7874 .jpg image/jpeg 858.14 https://res.cloudinary.com/won-games/image/upload/v1621523213/iron_harvest_operation_eagle_3bfe3d7874.jpg \N cloudinary {"public_id": "iron_harvest_operation_eagle_3bfe3d7874", "resource_type": "image"} \N \N 2021-05-20 12:06:56.362-03 2021-05-20 12:06:56.362-03 809 iron-harvest-operation-eagle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_iron_harvest_operation_eagle_11dd130677.jpg", "hash": "thumbnail_iron_harvest_operation_eagle_11dd130677", "mime": "image/jpeg", "name": "thumbnail_iron-harvest-operation-eagle.jpg", "path": null, "size": 9.73, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_iron_harvest_operation_eagle_11dd130677", "resource_type": "image"}}} iron_harvest_operation_eagle_11dd130677 .jpg image/jpeg 623.52 https://res.cloudinary.com/won-games/image/upload/v1621523212/iron_harvest_operation_eagle_11dd130677.jpg \N cloudinary {"public_id": "iron_harvest_operation_eagle_11dd130677", "resource_type": "image"} \N \N 2021-05-20 12:06:56.547-03 2021-05-20 12:06:56.547-03 810 dark-envoy.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_dark_envoy_474afa8953.jpg", "hash": "thumbnail_dark_envoy_474afa8953", "mime": "image/jpeg", "name": "thumbnail_dark-envoy.jpg", "path": null, "size": 9.96, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dark_envoy_474afa8953", "resource_type": "image"}}} dark_envoy_474afa8953 .jpg image/jpeg 1670.89 https://res.cloudinary.com/won-games/image/upload/v1621523213/dark_envoy_474afa8953.jpg \N cloudinary {"public_id": "dark_envoy_474afa8953", "resource_type": "image"} \N \N 2021-05-20 12:06:56.551-03 2021-05-20 12:06:56.551-03 811 imagine-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_imagine_earth_4439a37c49.jpg", "hash": "thumbnail_imagine_earth_4439a37c49", "mime": "image/jpeg", "name": "thumbnail_imagine-earth.jpg", "path": null, "size": 28.82, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_imagine_earth_4439a37c49", "resource_type": "image"}}} imagine_earth_4439a37c49 .jpg image/jpeg 916.76 https://res.cloudinary.com/won-games/image/upload/v1621523213/imagine_earth_4439a37c49.jpg \N cloudinary {"public_id": "imagine_earth_4439a37c49", "resource_type": "image"} \N \N 2021-05-20 12:06:56.664-03 2021-05-20 12:06:56.664-03 812 realms-beyond-ashes-of-the-fallen.jpg \N \N 1440 720 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523215/thumbnail_realms_beyond_ashes_of_the_fallen_d4a656816a.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_d4a656816a", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 31.5, "width": 245, "height": 123, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_d4a656816a", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_d4a656816a .jpg image/jpeg 776.08 https://res.cloudinary.com/won-games/image/upload/v1621523213/realms_beyond_ashes_of_the_fallen_d4a656816a.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_d4a656816a", "resource_type": "image"} \N \N 2021-05-20 12:06:56.778-03 2021-05-20 12:06:56.778-03 813 edge-of-eternity.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523214/thumbnail_edge_of_eternity_6191cad7f5.jpg", "hash": "thumbnail_edge_of_eternity_6191cad7f5", "mime": "image/jpeg", "name": "thumbnail_edge-of-eternity.jpg", "path": null, "size": 7.47, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_edge_of_eternity_6191cad7f5", "resource_type": "image"}}} edge_of_eternity_6191cad7f5 .jpg image/jpeg 498.32 https://res.cloudinary.com/won-games/image/upload/v1621523212/edge_of_eternity_6191cad7f5.jpg \N cloudinary {"public_id": "edge_of_eternity_6191cad7f5", "resource_type": "image"} \N \N 2021-05-20 12:06:56.863-03 2021-05-20 12:06:56.863-03 814 guild-of-ascension.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523216/thumbnail_guild_of_ascension_d3ec51fc96.jpg", "hash": "thumbnail_guild_of_ascension_d3ec51fc96", "mime": "image/jpeg", "name": "thumbnail_guild-of-ascension.jpg", "path": null, "size": 10.27, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_guild_of_ascension_d3ec51fc96", "resource_type": "image"}}} guild_of_ascension_d3ec51fc96 .jpg image/jpeg 605.64 https://res.cloudinary.com/won-games/image/upload/v1621523213/guild_of_ascension_d3ec51fc96.jpg \N cloudinary {"public_id": "guild_of_ascension_d3ec51fc96", "resource_type": "image"} \N \N 2021-05-20 12:06:57.44-03 2021-05-20 12:06:57.44-03 815 unbound-worlds-apart.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523216/thumbnail_unbound_worlds_apart_18851000db.jpg", "hash": "thumbnail_unbound_worlds_apart_18851000db", "mime": "image/jpeg", "name": "thumbnail_unbound-worlds-apart.jpg", "path": null, "size": 5.63, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_unbound_worlds_apart_18851000db", "resource_type": "image"}}} unbound_worlds_apart_18851000db .jpg image/jpeg 1546.77 https://res.cloudinary.com/won-games/image/upload/v1621523213/unbound_worlds_apart_18851000db.jpg \N cloudinary {"public_id": "unbound_worlds_apart_18851000db", "resource_type": "image"} \N \N 2021-05-20 12:06:57.449-03 2021-05-20 12:06:57.449-03 816 potion-craft-alchemist-simulator.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523216/thumbnail_potion_craft_alchemist_simulator_0f015d75d5.jpg", "hash": "thumbnail_potion_craft_alchemist_simulator_0f015d75d5", "mime": "image/jpeg", "name": "thumbnail_potion-craft-alchemist-simulator.jpg", "path": null, "size": 9.35, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_potion_craft_alchemist_simulator_0f015d75d5", "resource_type": "image"}}} potion_craft_alchemist_simulator_0f015d75d5 .jpg image/jpeg 858.43 https://res.cloudinary.com/won-games/image/upload/v1621523214/potion_craft_alchemist_simulator_0f015d75d5.jpg \N cloudinary {"public_id": "potion_craft_alchemist_simulator_0f015d75d5", "resource_type": "image"} \N \N 2021-05-20 12:06:57.461-03 2021-05-20 12:06:57.461-03 817 edge-of-eternity.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523216/thumbnail_edge_of_eternity_4ed5c18002.jpg", "hash": "thumbnail_edge_of_eternity_4ed5c18002", "mime": "image/jpeg", "name": "thumbnail_edge-of-eternity.jpg", "path": null, "size": 19.9, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_edge_of_eternity_4ed5c18002", "resource_type": "image"}}} edge_of_eternity_4ed5c18002 .jpg image/jpeg 935.11 https://res.cloudinary.com/won-games/image/upload/v1621523214/edge_of_eternity_4ed5c18002.jpg \N cloudinary {"public_id": "edge_of_eternity_4ed5c18002", "resource_type": "image"} \N \N 2021-05-20 12:06:57.978-03 2021-05-20 12:06:57.978-03 818 iron-harvest-operation-eagle.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523216/thumbnail_iron_harvest_operation_eagle_1d43f3adc5.jpg", "hash": "thumbnail_iron_harvest_operation_eagle_1d43f3adc5", "mime": "image/jpeg", "name": "thumbnail_iron-harvest-operation-eagle.jpg", "path": null, "size": 10.16, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_iron_harvest_operation_eagle_1d43f3adc5", "resource_type": "image"}}} iron_harvest_operation_eagle_1d43f3adc5 .jpg image/jpeg 787.96 https://res.cloudinary.com/won-games/image/upload/v1621523214/iron_harvest_operation_eagle_1d43f3adc5.jpg \N cloudinary {"public_id": "iron_harvest_operation_eagle_1d43f3adc5", "resource_type": "image"} \N \N 2021-05-20 12:06:57.991-03 2021-05-20 12:06:57.991-03 819 resort.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523217/thumbnail_resort_3b4b638cf4.jpg", "hash": "thumbnail_resort_3b4b638cf4", "mime": "image/jpeg", "name": "thumbnail_resort.jpg", "path": null, "size": 9.23, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_resort_3b4b638cf4", "resource_type": "image"}}} resort_3b4b638cf4 .jpg image/jpeg 681.47 https://res.cloudinary.com/won-games/image/upload/v1621523214/resort_3b4b638cf4.jpg \N cloudinary {"public_id": "resort_3b4b638cf4", "resource_type": "image"} \N \N 2021-05-20 12:06:58.224-03 2021-05-20 12:06:58.224-03 820 edge-of-eternity.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523217/thumbnail_edge_of_eternity_59d8f67d72.jpg", "hash": "thumbnail_edge_of_eternity_59d8f67d72", "mime": "image/jpeg", "name": "thumbnail_edge-of-eternity.jpg", "path": null, "size": 18.5, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_edge_of_eternity_59d8f67d72", "resource_type": "image"}}} edge_of_eternity_59d8f67d72 .jpg image/jpeg 1052.18 https://res.cloudinary.com/won-games/image/upload/v1621523215/edge_of_eternity_59d8f67d72.jpg \N cloudinary {"public_id": "edge_of_eternity_59d8f67d72", "resource_type": "image"} \N \N 2021-05-20 12:06:58.516-03 2021-05-20 12:06:58.516-03 821 realms-beyond-ashes-of-the-fallen.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523217/thumbnail_realms_beyond_ashes_of_the_fallen_9ad6e878e6.jpg", "hash": "thumbnail_realms_beyond_ashes_of_the_fallen_9ad6e878e6", "mime": "image/jpeg", "name": "thumbnail_realms-beyond-ashes-of-the-fallen.jpg", "path": null, "size": 25.1, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_realms_beyond_ashes_of_the_fallen_9ad6e878e6", "resource_type": "image"}}} realms_beyond_ashes_of_the_fallen_9ad6e878e6 .jpg image/jpeg 1123.89 https://res.cloudinary.com/won-games/image/upload/v1621523215/realms_beyond_ashes_of_the_fallen_9ad6e878e6.jpg \N cloudinary {"public_id": "realms_beyond_ashes_of_the_fallen_9ad6e878e6", "resource_type": "image"} \N \N 2021-05-20 12:06:58.673-03 2021-05-20 12:06:58.673-03 822 vampire-the-masquerade-bloodlines-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523217/thumbnail_vampire_the_masquerade_bloodlines_2_d08df0166d.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_d08df0166d", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 4.46, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_d08df0166d", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_d08df0166d .jpg image/jpeg 2384.25 https://res.cloudinary.com/won-games/image/upload/v1621523215/vampire_the_masquerade_bloodlines_2_d08df0166d.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_d08df0166d", "resource_type": "image"} \N \N 2021-05-20 12:06:58.918-03 2021-05-20 12:06:58.918-03 823 imagine-earth.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523218/thumbnail_imagine_earth_fee85db682.jpg", "hash": "thumbnail_imagine_earth_fee85db682", "mime": "image/jpeg", "name": "thumbnail_imagine-earth.jpg", "path": null, "size": 40.94, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_imagine_earth_fee85db682", "resource_type": "image"}}} imagine_earth_fee85db682 .jpg image/jpeg 1190.51 https://res.cloudinary.com/won-games/image/upload/v1621523215/imagine_earth_fee85db682.jpg \N cloudinary {"public_id": "imagine_earth_fee85db682", "resource_type": "image"} \N \N 2021-05-20 12:06:59.683-03 2021-05-20 12:06:59.683-03 824 dark-envoy.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523218/thumbnail_dark_envoy_809b1af8ff.jpg", "hash": "thumbnail_dark_envoy_809b1af8ff", "mime": "image/jpeg", "name": "thumbnail_dark-envoy.jpg", "path": null, "size": 11.6, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_dark_envoy_809b1af8ff", "resource_type": "image"}}} dark_envoy_809b1af8ff .jpg image/jpeg 1991.61 https://res.cloudinary.com/won-games/image/upload/v1621523215/dark_envoy_809b1af8ff.jpg \N cloudinary {"public_id": "dark_envoy_809b1af8ff", "resource_type": "image"} \N \N 2021-05-20 12:06:59.766-03 2021-05-20 12:06:59.766-03 825 edge-of-eternity.jpg \N \N 3840 2160 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523219/thumbnail_edge_of_eternity_ff76d6b870.jpg", "hash": "thumbnail_edge_of_eternity_ff76d6b870", "mime": "image/jpeg", "name": "thumbnail_edge-of-eternity.jpg", "path": null, "size": 9.13, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_edge_of_eternity_ff76d6b870", "resource_type": "image"}}} edge_of_eternity_ff76d6b870 .jpg image/jpeg 2457.05 https://res.cloudinary.com/won-games/image/upload/v1621523216/edge_of_eternity_ff76d6b870.jpg \N cloudinary {"public_id": "edge_of_eternity_ff76d6b870", "resource_type": "image"} \N \N 2021-05-20 12:07:00.023-03 2021-05-20 12:07:00.023-03 826 vampire-the-masquerade-bloodlines-2.jpg \N \N 2560 1440 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523218/thumbnail_vampire_the_masquerade_bloodlines_2_9f807669a0.jpg", "hash": "thumbnail_vampire_the_masquerade_bloodlines_2_9f807669a0", "mime": "image/jpeg", "name": "thumbnail_vampire-the-masquerade-bloodlines-2.jpg", "path": null, "size": 8.05, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_vampire_the_masquerade_bloodlines_2_9f807669a0", "resource_type": "image"}}} vampire_the_masquerade_bloodlines_2_9f807669a0 .jpg image/jpeg 2360.66 https://res.cloudinary.com/won-games/image/upload/v1621523215/vampire_the_masquerade_bloodlines_2_9f807669a0.jpg \N cloudinary {"public_id": "vampire_the_masquerade_bloodlines_2_9f807669a0", "resource_type": "image"} \N \N 2021-05-20 12:07:00.366-03 2021-05-20 12:07:00.366-03 827 astria-ascending.jpg \N \N 1920 1080 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523219/thumbnail_astria_ascending_f45dfc0595.jpg", "hash": "thumbnail_astria_ascending_f45dfc0595", "mime": "image/jpeg", "name": "thumbnail_astria-ascending.jpg", "path": null, "size": 12.24, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_astria_ascending_f45dfc0595", "resource_type": "image"}}} astria_ascending_f45dfc0595 .jpg image/jpeg 1727.86 https://res.cloudinary.com/won-games/image/upload/v1621523216/astria_ascending_f45dfc0595.jpg \N cloudinary {"public_id": "astria_ascending_f45dfc0595", "resource_type": "image"} \N \N 2021-05-20 12:07:00.512-03 2021-05-20 12:07:00.512-03 828 myst.jpg \N \N 5760 3240 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523220/thumbnail_myst_6e503ff425.jpg", "hash": "thumbnail_myst_6e503ff425", "mime": "image/jpeg", "name": "thumbnail_myst.jpg", "path": null, "size": 11.91, "width": 245, "height": 138, "provider_metadata": {"public_id": "thumbnail_myst_6e503ff425", "resource_type": "image"}}} myst_6e503ff425 .jpg image/jpeg 2349.31 https://res.cloudinary.com/won-games/image/upload/v1621523217/myst_6e503ff425.jpg \N cloudinary {"public_id": "myst_6e503ff425", "resource_type": "image"} \N \N 2021-05-20 12:07:01.661-03 2021-05-20 12:07:01.661-03 829 cyberpunk.webp 1275 460 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523292/thumbnail_cyberpunk_0d9d14577c.webp", "hash": "thumbnail_cyberpunk_0d9d14577c", "mime": "image/webp", "name": "thumbnail_cyberpunk.webp", "path": null, "size": 3.8, "width": 245, "height": 88, "provider_metadata": {"public_id": "thumbnail_cyberpunk_0d9d14577c", "resource_type": "image"}}} cyberpunk_0d9d14577c .webp image/webp 44.31 https://res.cloudinary.com/won-games/image/upload/v1621523291/cyberpunk_0d9d14577c.webp \N cloudinary {"public_id": "cyberpunk_0d9d14577c", "resource_type": "image"} 1 1 2021-05-20 12:08:13.577-03 2021-05-20 12:08:13.583-03 830 horizon.webp 1275 460 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523321/thumbnail_horizon_57f240b2cc.webp", "hash": "thumbnail_horizon_57f240b2cc", "mime": "image/webp", "name": "thumbnail_horizon.webp", "path": null, "size": 6.38, "width": 245, "height": 88, "provider_metadata": {"public_id": "thumbnail_horizon_57f240b2cc", "resource_type": "image"}}} horizon_57f240b2cc .webp image/webp 104.60 https://res.cloudinary.com/won-games/image/upload/v1621523319/horizon_57f240b2cc.webp \N cloudinary {"public_id": "horizon_57f240b2cc", "resource_type": "image"} 1 1 2021-05-20 12:08:42.456-03 2021-05-20 12:08:42.46-03 831 promo.webp 1275 460 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523357/thumbnail_promo_99c5a2e9cb.webp", "hash": "thumbnail_promo_99c5a2e9cb", "mime": "image/webp", "name": "thumbnail_promo.webp", "path": null, "size": 4.91, "width": 245, "height": 88, "provider_metadata": {"public_id": "thumbnail_promo_99c5a2e9cb", "resource_type": "image"}}} promo_99c5a2e9cb .webp image/webp 45.28 https://res.cloudinary.com/won-games/image/upload/v1621523355/promo_99c5a2e9cb.webp \N cloudinary {"public_id": "promo_99c5a2e9cb", "resource_type": "image"} 1 1 2021-05-20 12:09:19.029-03 2021-05-20 12:09:19.033-03 832 biomutant.webp 1275 460 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523435/thumbnail_biomutant_0ddd5f290c.webp", "hash": "thumbnail_biomutant_0ddd5f290c", "mime": "image/webp", "name": "thumbnail_biomutant.webp", "path": null, "size": 3.78, "width": 245, "height": 88, "provider_metadata": {"public_id": "thumbnail_biomutant_0ddd5f290c", "resource_type": "image"}}} biomutant_0ddd5f290c .webp image/webp 60.92 https://res.cloudinary.com/won-games/image/upload/v1621523434/biomutant_0ddd5f290c.webp \N cloudinary {"public_id": "biomutant_0ddd5f290c", "resource_type": "image"} 1 1 2021-05-20 12:10:37.617-03 2021-05-20 12:10:37.622-03 833 biomutant-logo.webp 480 285 {"thumbnail": {"ext": ".webp", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523453/thumbnail_biomutant_logo_fbc8ebd98d.webp", "hash": "thumbnail_biomutant_logo_fbc8ebd98d", "mime": "image/webp", "name": "thumbnail_biomutant-logo.webp", "path": null, "size": 6.22, "width": 245, "height": 145, "provider_metadata": {"public_id": "thumbnail_biomutant_logo_fbc8ebd98d", "resource_type": "image"}}} biomutant_logo_fbc8ebd98d .webp image/webp 11.69 https://res.cloudinary.com/won-games/image/upload/v1621523452/biomutant_logo_fbc8ebd98d.webp \N cloudinary {"public_id": "biomutant_logo_fbc8ebd98d", "resource_type": "image"} 1 1 2021-05-20 12:10:55.031-03 2021-05-20 12:10:55.036-03 834 disco-elysium.jpg 1920 655 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523454/thumbnail_disco_elysium_84a177a73e.jpg", "hash": "thumbnail_disco_elysium_84a177a73e", "mime": "image/jpeg", "name": "thumbnail_disco-elysium.jpg", "path": null, "size": 5.91, "width": 245, "height": 84, "provider_metadata": {"public_id": "thumbnail_disco_elysium_84a177a73e", "resource_type": "image"}}} disco_elysium_84a177a73e .jpg image/jpeg 199.55 https://res.cloudinary.com/won-games/image/upload/v1621523452/disco_elysium_84a177a73e.jpg \N cloudinary {"public_id": "disco_elysium_84a177a73e", "resource_type": "image"} 1 1 2021-05-20 12:10:55.41-03 2021-05-20 12:10:55.415-03 835 seven-background.jpg 1920 655 {"thumbnail": {"ext": ".jpg", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523454/thumbnail_seven_background_bce064b721.jpg", "hash": "thumbnail_seven_background_bce064b721", "mime": "image/jpeg", "name": "thumbnail_seven-background.jpg", "path": null, "size": 4.32, "width": 245, "height": 84, "provider_metadata": {"public_id": "thumbnail_seven_background_bce064b721", "resource_type": "image"}}} seven_background_bce064b721 .jpg image/jpeg 123.77 https://res.cloudinary.com/won-games/image/upload/v1621523452/seven_background_bce064b721.jpg \N cloudinary {"public_id": "seven_background_bce064b721", "resource_type": "image"} 1 1 2021-05-20 12:10:55.624-03 2021-05-20 12:10:55.627-03 836 seven-logo.png 480 285 {"thumbnail": {"ext": ".png", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523454/thumbnail_seven_logo_893e6c60a9.png", "hash": "thumbnail_seven_logo_893e6c60a9", "mime": "image/png", "name": "thumbnail_seven-logo.png", "path": null, "size": 30.87, "width": 245, "height": 145, "provider_metadata": {"public_id": "thumbnail_seven_logo_893e6c60a9", "resource_type": "image"}}} seven_logo_893e6c60a9 .png image/png 72.22 https://res.cloudinary.com/won-games/image/upload/v1621523452/seven_logo_893e6c60a9.png \N cloudinary {"public_id": "seven_logo_893e6c60a9", "resource_type": "image"} 1 1 2021-05-20 12:10:55.726-03 2021-05-20 12:10:55.73-03 837 Image (4).png 266 311 {"thumbnail": {"ext": ".png", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523453/thumbnail_Image_4_66c237153e.png", "hash": "thumbnail_Image_4_66c237153e", "mime": "image/png", "name": "thumbnail_Image (4).png", "path": null, "size": 47.82, "width": 133, "height": 156, "provider_metadata": {"public_id": "thumbnail_Image_4_66c237153e", "resource_type": "image"}}} Image_4_66c237153e .png image/png 115.17 https://res.cloudinary.com/won-games/image/upload/v1621523452/Image_4_66c237153e.png \N cloudinary {"public_id": "Image_4_66c237153e", "resource_type": "image"} 1 1 2021-05-20 12:10:55.847-03 2021-05-20 12:10:55.85-03 838 f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285.png 480 285 {"thumbnail": {"ext": ".png", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523454/thumbnail_f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b.png", "hash": "thumbnail_f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b", "mime": "image/png", "name": "thumbnail_f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285.png", "path": null, "size": 25.5, "width": 245, "height": 145, "provider_metadata": {"public_id": "thumbnail_f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b", "resource_type": "image"}}} f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b .png image/png 61.62 https://res.cloudinary.com/won-games/image/upload/v1621523452/f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b.png \N cloudinary {"public_id": "f3cecba0838e98aff816ba03624f1dd96ca0554710f5eed56ad2513ce8f3d05b_product_card_v2_logo_480x285_e647b1715b", "resource_type": "image"} 1 1 2021-05-20 12:10:56.171-03 2021-05-20 12:10:56.174-03 839 Background.png 1042 321 {"thumbnail": {"ext": ".png", "url": "https://res.cloudinary.com/won-games/image/upload/v1621523457/thumbnail_Background_20bd2e4eef.png", "hash": "thumbnail_Background_20bd2e4eef", "mime": "image/png", "name": "thumbnail_Background.png", "path": null, "size": 24.25, "width": 245, "height": 75, "provider_metadata": {"public_id": "thumbnail_Background_20bd2e4eef", "resource_type": "image"}}} Background_20bd2e4eef .png image/png 347.25 https://res.cloudinary.com/won-games/image/upload/v1621523455/Background_20bd2e4eef.png \N cloudinary {"public_id": "Background_20bd2e4eef", "resource_type": "image"} 1 1 2021-05-20 12:10:58.412-03 2021-05-20 12:10:58.416-03 \. -- -- TOC entry 3420 (class 0 OID 549286) -- Dependencies: 271 -- Data for Name: upload_file_morph; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.upload_file_morph (id, upload_file_id, related_id, related_type, field, "order") FROM stdin; 1 2 15 games cover 1 2 3 27 games cover 1 3 4 7 games cover 1 4 5 3 games cover 1 5 6 34 games cover 1 6 7 2 games cover 1 7 8 18 games cover 1 8 9 44 games cover 1 9 10 11 games cover 1 10 11 5 games cover 1 11 12 46 games cover 1 12 13 26 games cover 1 13 14 40 games cover 1 14 15 4 games cover 1 15 16 48 games cover 1 16 17 19 games cover 1 17 18 25 games cover 1 18 19 39 games cover 1 20 21 16 games cover 1 21 22 45 games cover 1 22 23 9 games cover 1 23 24 12 games cover 1 24 25 30 games cover 1 25 26 21 games cover 1 26 27 35 games cover 1 27 28 23 games cover 1 28 29 32 games cover 1 29 30 10 games cover 1 30 31 28 games cover 1 31 32 29 games cover 1 32 34 37 games cover 1 33 33 8 games cover 1 34 35 22 games cover 1 35 36 24 games cover 1 36 37 31 games cover 1 37 38 38 games cover 1 38 39 42 games cover 1 39 40 13 games cover 1 40 41 33 games cover 1 41 42 41 games cover 1 42 43 43 games cover 1 43 44 47 games cover 1 44 45 14 games cover 1 45 46 20 games cover 1 46 47 6 games cover 1 47 48 17 games cover 1 48 49 36 games cover 1 49 50 7 games gallery 1 50 51 7 games gallery 2 51 52 34 games gallery 1 52 53 34 games gallery 2 53 54 7 games gallery 3 54 55 34 games gallery 3 55 56 7 games gallery 4 56 57 15 games gallery 1 57 58 34 games gallery 4 58 59 7 games gallery 5 59 60 18 games gallery 1 60 61 34 games gallery 5 61 62 25 games gallery 1 62 63 15 games gallery 2 63 64 45 games gallery 1 64 65 2 games gallery 1 65 66 26 games gallery 1 66 67 2 games gallery 2 67 68 15 games gallery 3 68 69 40 games gallery 1 69 70 26 games gallery 2 70 71 21 games gallery 1 71 72 11 games gallery 1 72 73 3 games gallery 1 73 74 11 games gallery 2 74 75 15 games gallery 4 75 76 40 games gallery 2 76 77 26 games gallery 3 77 78 15 games gallery 5 78 79 48 games gallery 1 79 80 26 games gallery 4 80 81 26 games gallery 5 81 82 11 games gallery 3 82 83 27 games gallery 1 83 84 48 games gallery 2 84 85 16 games gallery 1 85 86 11 games gallery 4 86 87 21 games gallery 2 87 88 19 games gallery 1 88 89 40 games gallery 3 89 90 5 games gallery 1 90 91 21 games gallery 3 91 92 12 games gallery 1 92 93 45 games gallery 2 93 94 22 games gallery 1 94 95 2 games gallery 3 95 96 27 games gallery 2 96 97 39 games gallery 1 97 98 18 games gallery 2 98 99 2 games gallery 4 99 100 22 games gallery 2 100 101 40 games gallery 4 101 102 22 games gallery 3 102 103 9 games gallery 1 103 104 21 games gallery 4 104 105 25 games gallery 2 105 106 45 games gallery 3 106 107 41 games gallery 1 107 108 18 games gallery 3 108 109 48 games gallery 3 109 110 25 games gallery 3 110 111 4 games gallery 1 111 112 48 games gallery 4 112 113 25 games gallery 4 113 114 41 games gallery 2 114 115 24 games gallery 1 115 116 11 games gallery 5 116 117 43 games gallery 1 117 118 41 games gallery 3 118 119 24 games gallery 2 119 120 30 games gallery 1 120 121 21 games gallery 5 121 122 9 games gallery 2 122 123 10 games gallery 1 123 124 48 games gallery 5 124 125 24 games gallery 3 125 126 42 games gallery 1 126 127 5 games gallery 2 127 128 9 games gallery 3 128 129 35 games gallery 1 129 130 29 games gallery 1 130 131 32 games gallery 1 131 132 18 games gallery 4 132 133 45 games gallery 4 133 134 3 games gallery 2 134 135 42 games gallery 2 135 136 25 games gallery 5 136 137 27 games gallery 3 137 138 28 games gallery 1 170 171 43 games gallery 4 171 172 47 games gallery 2 172 173 40 games gallery 5 173 174 20 games gallery 1 177 178 41 games gallery 5 178 179 20 games gallery 2 180 181 8 games gallery 2 187 188 6 games gallery 1 188 189 22 games gallery 5 189 190 4 games gallery 4 190 191 39 games gallery 5 191 192 29 games gallery 2 192 193 2 games gallery 5 193 194 6 games gallery 2 196 197 12 games gallery 4 199 201 33 games gallery 2 138 139 30 games gallery 2 143 144 41 games gallery 4 148 149 38 games gallery 2 149 150 42 games gallery 3 151 152 42 games gallery 4 152 153 43 games gallery 3 153 154 30 games gallery 3 154 155 37 games gallery 1 155 156 39 games gallery 2 162 163 5 games gallery 4 163 164 4 games gallery 2 168 169 30 games gallery 4 186 187 4 games gallery 3 194 195 31 games gallery 1 195 196 33 games gallery 1 201 202 14 games gallery 1 207 208 16 games gallery 3 208 209 38 games gallery 3 209 210 9 games gallery 5 211 212 36 games gallery 1 214 215 13 games gallery 3 217 217 31 games gallery 2 233 234 13 games gallery 5 240 241 17 games gallery 2 244 245 8 games gallery 4 245 246 10 games gallery 5 246 247 37 games gallery 2 247 248 29 games gallery 3 252 253 3 games gallery 4 253 254 29 games gallery 4 254 255 36 games gallery 4 256 257 47 games gallery 4 257 258 38 games gallery 4 258 259 31 games gallery 4 259 260 33 games gallery 4 260 261 33 games gallery 5 261 262 16 games gallery 5 262 263 23 games gallery 4 263 264 27 games gallery 5 264 265 37 games gallery 4 265 266 47 games gallery 5 266 267 8 games gallery 5 267 268 31 games gallery 5 268 269 46 games gallery 2 275 276 46 games gallery 4 276 277 38 games gallery 5 277 278 36 games gallery 5 278 279 28 games gallery 4 279 280 46 games gallery 5 280 281 28 games gallery 5 281 282 32 games gallery 5 282 283 6 games gallery 5 283 284 3 games gallery 5 139 140 45 games gallery 5 140 141 19 games gallery 2 141 142 24 games gallery 4 142 143 8 games gallery 1 144 145 43 games gallery 2 145 146 38 games gallery 1 146 147 35 games gallery 2 147 148 22 games gallery 4 150 151 47 games gallery 1 156 157 13 games gallery 1 160 161 19 games gallery 3 164 165 13 games gallery 2 169 170 12 games gallery 2 174 175 43 games gallery 5 175 176 12 games gallery 3 176 177 9 games gallery 4 179 180 5 games gallery 5 181 182 19 games gallery 4 182 183 30 games gallery 5 183 184 39 games gallery 4 184 185 20 games gallery 3 185 186 8 games gallery 3 198 199 23 games gallery 1 212 213 4 games gallery 5 213 214 36 games gallery 2 218 219 20 games gallery 4 222 223 13 games gallery 4 226 227 17 games gallery 1 229 230 20 games gallery 5 157 158 5 games gallery 3 158 159 24 games gallery 5 159 160 39 games gallery 3 161 162 28 games gallery 2 165 166 16 games gallery 2 166 167 35 games gallery 3 167 168 35 games gallery 4 203 203 14 games gallery 1 231 232 33 games gallery 3 234 235 46 games gallery 1 235 236 10 games gallery 4 237 238 32 games gallery 2 238 239 42 games gallery 5 239 240 36 games gallery 3 241 242 23 games gallery 3 202 204 10 games gallery 2 204 205 12 games gallery 5 205 206 35 games gallery 5 215 216 16 games gallery 4 216 218 3 games gallery 3 219 220 28 games gallery 3 220 221 14 games gallery 2 221 222 10 games gallery 3 223 224 18 games gallery 5 224 225 23 games gallery 2 225 226 14 games gallery 3 227 228 19 games gallery 5 228 229 47 games gallery 3 230 231 27 games gallery 4 232 233 14 games gallery 4 242 243 17 games gallery 3 243 244 6 games gallery 3 248 249 37 games gallery 3 249 250 17 games gallery 4 250 251 32 games gallery 3 251 252 6 games gallery 4 255 256 31 games gallery 3 269 270 23 games gallery 5 270 271 46 games gallery 3 271 272 17 games gallery 5 272 273 29 games gallery 5 273 274 32 games gallery 4 274 275 37 games gallery 5 284 285 49 games cover 1 285 286 49 games gallery 1 286 287 49 games gallery 2 287 288 49 games gallery 3 288 289 49 games gallery 4 289 290 49 games gallery 5 290 291 57 games cover 1 291 292 51 games cover 1 292 293 58 games cover 1 293 294 69 games cover 1 294 295 81 games cover 1 295 296 83 games cover 1 296 297 67 games cover 1 297 298 60 games cover 1 298 300 70 games cover 1 299 299 97 games cover 1 300 301 88 games cover 1 301 302 95 games cover 1 302 303 52 games cover 1 303 304 78 games cover 1 304 305 54 games cover 1 305 306 94 games cover 1 306 307 87 games cover 1 307 308 71 games cover 1 308 309 55 games cover 1 309 310 61 games cover 1 310 311 68 games cover 1 311 312 76 games cover 1 312 313 77 games cover 1 313 314 93 games cover 1 314 315 85 games cover 1 315 316 56 games cover 1 316 317 53 games cover 1 317 318 72 games cover 1 318 319 75 games cover 1 319 320 96 games cover 1 320 321 63 games cover 1 321 324 73 games cover 1 322 322 64 games cover 1 323 323 62 games cover 1 324 325 91 games cover 1 325 326 50 games cover 1 326 327 65 games cover 1 327 328 74 games cover 1 328 329 80 games cover 1 329 330 92 games cover 1 330 331 59 games cover 1 331 332 66 games cover 1 332 333 84 games cover 1 333 334 90 games cover 1 334 335 70 games gallery 1 335 336 70 games gallery 2 336 337 70 games gallery 3 337 338 86 games cover 1 338 339 82 games cover 1 339 340 79 games cover 1 340 341 83 games gallery 1 341 342 70 games gallery 4 342 343 70 games gallery 5 343 344 58 games gallery 1 344 345 83 games gallery 2 345 346 58 games gallery 2 346 347 89 games cover 1 347 348 51 games gallery 1 348 349 54 games gallery 1 349 350 83 games gallery 3 350 351 67 games gallery 1 351 352 69 games gallery 1 352 353 81 games gallery 1 353 354 83 games gallery 4 354 355 51 games gallery 2 355 356 95 games gallery 1 356 357 95 games gallery 2 357 358 60 games gallery 1 358 359 58 games gallery 3 359 360 57 games gallery 1 360 361 83 games gallery 5 361 362 58 games gallery 4 362 363 97 games gallery 1 363 364 51 games gallery 3 364 365 97 games gallery 2 365 366 61 games gallery 1 366 367 94 games gallery 1 367 368 76 games gallery 1 368 369 58 games gallery 5 369 370 81 games gallery 2 370 371 51 games gallery 4 371 372 88 games gallery 1 372 373 88 games gallery 2 373 374 69 games gallery 2 374 375 55 games gallery 1 375 377 69 games gallery 3 376 376 88 games gallery 3 377 378 95 games gallery 3 378 379 60 games gallery 2 379 380 81 games gallery 3 380 381 54 games gallery 2 381 382 71 games gallery 1 382 383 68 games gallery 1 383 384 55 games gallery 2 384 385 68 games gallery 2 385 386 76 games gallery 2 386 387 60 games gallery 3 387 388 61 games gallery 2 388 389 67 games gallery 2 389 390 95 games gallery 4 390 391 61 games gallery 3 391 392 51 games gallery 5 392 393 57 games gallery 2 393 394 60 games gallery 4 394 395 52 games gallery 1 395 396 54 games gallery 3 396 397 67 games gallery 3 397 398 69 games gallery 4 398 399 78 games gallery 1 399 400 54 games gallery 4 400 401 87 games gallery 1 401 403 69 games gallery 5 402 402 71 games gallery 2 403 404 54 games gallery 5 404 405 75 games gallery 1 405 406 68 games gallery 3 406 407 88 games gallery 4 407 408 56 games gallery 1 408 409 97 games gallery 3 409 410 62 games gallery 1 410 411 57 games gallery 3 411 412 68 games gallery 4 412 413 56 games gallery 2 413 414 93 games gallery 1 414 415 97 games gallery 4 415 416 62 games gallery 2 416 417 76 games gallery 3 417 418 75 games gallery 2 418 419 85 games gallery 1 419 420 60 games gallery 5 420 421 76 games gallery 4 421 422 75 games gallery 3 422 423 67 games gallery 4 423 424 75 games gallery 4 424 425 78 games gallery 2 425 426 76 games gallery 5 426 427 63 games gallery 1 427 428 97 games gallery 5 428 429 67 games gallery 5 429 430 62 games gallery 3 430 431 95 games gallery 5 431 432 61 games gallery 4 432 433 81 games gallery 4 433 434 72 games gallery 1 434 435 75 games gallery 5 435 436 71 games gallery 3 436 437 56 games gallery 3 437 438 96 games gallery 1 438 439 71 games gallery 4 439 440 96 games gallery 2 440 441 68 games gallery 5 441 442 72 games gallery 2 442 443 63 games gallery 2 443 444 85 games gallery 2 444 445 73 games gallery 1 445 446 87 games gallery 2 446 447 81 games gallery 5 447 448 56 games gallery 4 448 449 85 games gallery 3 449 450 62 games gallery 4 450 451 72 games gallery 3 451 452 88 games gallery 5 452 453 71 games gallery 5 453 454 61 games gallery 5 454 455 96 games gallery 3 455 456 77 games gallery 1 456 459 93 games gallery 2 457 457 91 games gallery 1 458 458 62 games gallery 5 459 460 65 games gallery 1 460 461 96 games gallery 4 461 463 65 games gallery 1 462 462 92 games gallery 1 463 464 94 games gallery 2 464 465 92 games gallery 2 465 466 64 games gallery 1 466 467 73 games gallery 2 467 468 78 games gallery 3 468 469 85 games gallery 4 469 470 50 games gallery 1 470 471 50 games gallery 2 471 472 77 games gallery 2 472 474 74 games gallery 1 473 473 96 games gallery 5 474 475 65 games gallery 2 475 476 93 games gallery 3 476 477 91 games gallery 2 477 478 93 games gallery 4 478 479 92 games gallery 3 479 480 80 games gallery 1 480 481 91 games gallery 3 481 482 72 games gallery 4 482 483 72 games gallery 4 483 484 64 games gallery 2 484 485 92 games gallery 4 485 486 77 games gallery 3 486 487 65 games gallery 3 487 488 73 games gallery 3 488 489 65 games gallery 4 489 490 77 games gallery 4 490 491 80 games gallery 2 491 492 64 games gallery 3 492 493 63 games gallery 3 493 494 74 games gallery 2 494 495 63 games gallery 4 495 496 73 games gallery 4 496 497 50 games gallery 3 497 498 53 games gallery 1 498 499 91 games gallery 4 499 500 73 games gallery 5 500 501 91 games gallery 5 501 502 63 games gallery 5 502 503 59 games gallery 1 503 504 85 games gallery 5 504 505 80 games gallery 3 505 506 53 games gallery 2 506 507 77 games gallery 5 507 508 93 games gallery 5 508 509 59 games gallery 2 509 510 59 games gallery 3 510 511 92 games gallery 5 511 512 80 games gallery 4 512 513 53 games gallery 3 513 514 74 games gallery 3 514 515 74 games gallery 4 515 516 53 games gallery 4 516 517 59 games gallery 4 517 518 59 games gallery 5 518 519 84 games gallery 1 519 520 84 games gallery 2 520 521 84 games gallery 3 521 522 74 games gallery 5 522 523 66 games gallery 1 523 524 66 games gallery 2 524 525 80 games gallery 5 525 526 50 games gallery 4 526 527 90 games gallery 1 527 528 84 games gallery 4 528 529 84 games gallery 5 529 530 82 games gallery 1 534 535 82 games gallery 2 535 536 86 games gallery 4 540 541 90 games gallery 2 541 542 86 games gallery 5 530 531 86 games gallery 1 531 532 50 games gallery 5 532 533 86 games gallery 2 533 534 86 games gallery 3 536 537 79 games gallery 1 537 538 53 games gallery 5 538 539 82 games gallery 3 539 540 79 games gallery 2 542 543 82 games gallery 4 543 544 82 games gallery 5 544 545 66 games gallery 3 545 546 79 games gallery 3 546 547 79 games gallery 4 547 548 90 games gallery 3 548 549 79 games gallery 5 549 550 66 games gallery 4 550 551 90 games gallery 4 551 552 89 games gallery 1 552 553 89 games gallery 2 553 554 66 games gallery 5 554 555 143 games cover 1 555 556 132 games cover 1 556 557 131 games cover 1 557 558 112 games cover 1 558 559 104 games cover 1 559 560 142 games cover 1 560 561 106 games cover 1 561 562 110 games cover 1 562 563 108 games cover 1 563 564 101 games cover 1 564 565 141 games cover 1 565 566 137 games cover 1 566 567 130 games cover 1 567 568 122 games cover 1 568 569 102 games cover 1 569 570 114 games cover 1 570 571 98 games cover 1 571 572 121 games cover 1 572 573 109 games cover 1 573 574 99 games cover 1 574 575 113 games cover 1 575 576 103 games cover 1 576 577 107 games cover 1 577 578 133 games cover 1 578 579 111 games cover 1 579 580 135 games cover 1 580 581 119 games cover 1 581 582 144 games cover 1 582 584 134 games cover 1 583 583 140 games cover 1 584 585 125 games cover 1 585 586 129 games cover 1 586 587 115 games cover 1 587 588 126 games cover 1 588 589 138 games cover 1 589 590 117 games cover 1 590 591 105 games cover 1 591 592 100 games cover 1 592 593 127 games cover 1 593 594 120 games cover 1 594 595 139 games cover 1 595 596 118 games cover 1 596 597 136 games cover 1 597 598 116 games cover 1 598 599 143 games gallery 1 599 600 143 games gallery 2 600 601 143 games gallery 3 601 602 132 games gallery 1 602 603 112 games gallery 1 603 604 112 games gallery 2 604 605 143 games gallery 4 605 606 143 games gallery 5 606 607 132 games gallery 2 607 608 137 games gallery 1 608 609 141 games gallery 1 609 610 142 games gallery 1 610 611 132 games gallery 3 611 612 132 games gallery 4 612 613 132 games gallery 4 613 614 98 games gallery 1 614 615 104 games gallery 1 615 616 103 games gallery 1 616 617 107 games gallery 1 617 618 103 games gallery 2 618 619 141 games gallery 2 619 620 112 games gallery 3 620 621 141 games gallery 3 621 622 107 games gallery 2 622 623 130 games gallery 1 623 624 106 games gallery 1 624 625 137 games gallery 2 625 626 122 games gallery 1 626 627 141 games gallery 4 627 628 142 games gallery 2 628 629 114 games gallery 1 629 630 110 games gallery 1 630 631 109 games gallery 1 631 632 135 games gallery 1 632 633 122 games gallery 2 633 634 106 games gallery 2 634 635 107 games gallery 3 635 636 98 games gallery 2 636 637 114 games gallery 2 637 638 114 games gallery 3 638 639 98 games gallery 3 639 640 112 games gallery 4 640 641 122 games gallery 3 641 642 103 games gallery 3 642 643 98 games gallery 4 643 644 140 games gallery 1 644 645 135 games gallery 2 645 646 107 games gallery 4 646 647 122 games gallery 4 647 648 119 games gallery 1 648 649 114 games gallery 4 649 650 103 games gallery 4 650 651 129 games gallery 1 651 652 140 games gallery 2 652 653 110 games gallery 2 653 654 98 games gallery 5 654 655 103 games gallery 5 655 656 104 games gallery 2 656 657 113 games gallery 1 657 658 114 games gallery 5 658 659 109 games gallery 2 659 660 113 games gallery 2 660 661 107 games gallery 5 661 662 137 games gallery 3 662 663 106 games gallery 3 663 664 141 games gallery 5 664 665 134 games gallery 1 665 666 121 games gallery 1 666 667 122 games gallery 5 667 668 110 games gallery 3 668 669 121 games gallery 2 669 670 129 games gallery 2 670 671 134 games gallery 2 671 672 134 games gallery 3 672 673 110 games gallery 4 673 674 144 games gallery 1 674 675 109 games gallery 3 679 680 130 games gallery 2 685 686 113 games gallery 3 691 692 125 games gallery 2 692 693 142 games gallery 3 693 694 117 games gallery 1 697 698 121 games gallery 3 708 709 100 games gallery 1 709 710 117 games gallery 4 710 711 119 games gallery 2 711 712 130 games gallery 4 712 713 137 games gallery 4 713 714 111 games gallery 1 714 715 121 games gallery 4 717 718 115 games gallery 1 719 722 100 games gallery 2 732 733 105 games gallery 3 734 735 108 games gallery 2 735 736 134 games gallery 5 736 737 119 games gallery 3 738 739 99 games gallery 2 739 740 126 games gallery 5 740 741 115 games gallery 3 742 743 119 games gallery 4 743 744 136 games gallery 2 744 745 119 games gallery 5 746 747 139 games gallery 1 747 748 112 games gallery 5 748 749 100 games gallery 4 749 750 117 games gallery 5 750 751 99 games gallery 3 751 752 116 games gallery 1 752 753 120 games gallery 1 754 755 138 games gallery 1 759 760 131 games gallery 2 760 761 99 games gallery 4 761 762 105 games gallery 5 762 763 111 games gallery 2 763 764 140 games gallery 5 764 765 139 games gallery 2 765 767 101 games gallery 5 768 769 133 games gallery 1 770 771 144 games gallery 5 773 774 110 games gallery 5 775 776 139 games gallery 3 675 676 101 games gallery 1 690 691 104 games gallery 5 694 695 129 games gallery 3 695 696 113 games gallery 4 696 697 108 games gallery 1 715 716 137 games gallery 5 718 721 130 games gallery 5 776 777 136 games gallery 4 786 787 131 games gallery 4 787 788 123 games gallery 1 788 789 116 games gallery 5 790 791 115 games gallery 5 791 792 131 games gallery 5 792 793 100 games gallery 5 793 794 123 games gallery 2 794 795 123 games gallery 3 795 796 120 games gallery 3 797 798 99 games gallery 5 798 799 102 games gallery 1 800 801 118 games gallery 5 801 802 127 games gallery 3 802 803 129 games gallery 5 803 804 102 games gallery 2 676 677 135 games gallery 3 677 678 140 games gallery 3 678 679 135 games gallery 4 680 681 140 games gallery 4 681 682 144 games gallery 2 682 683 104 games gallery 3 683 684 104 games gallery 4 684 685 126 games gallery 1 686 687 101 games gallery 2 687 688 125 games gallery 1 688 689 130 games gallery 3 689 690 106 games gallery 4 698 699 126 games gallery 2 699 700 117 games gallery 2 700 701 113 games gallery 5 701 702 109 games gallery 4 702 703 131 games gallery 1 703 704 126 games gallery 3 704 705 117 games gallery 3 705 706 125 games gallery 3 706 707 105 games gallery 1 707 708 126 games gallery 4 716 717 142 games gallery 4 721 720 134 games gallery 4 730 731 101 games gallery 4 731 732 136 games gallery 1 755 756 144 games gallery 4 756 757 136 games gallery 3 757 758 116 games gallery 2 758 759 116 games gallery 3 766 766 106 games gallery 5 778 779 115 games gallery 4 781 782 127 games gallery 2 783 784 118 games gallery 4 785 786 133 games gallery 2 789 790 133 games gallery 3 796 797 138 games gallery 2 804 805 128 games gallery 1 805 806 111 games gallery 4 806 807 108 games gallery 4 720 719 135 games gallery 5 777 778 131 games gallery 3 779 780 111 games gallery 3 780 781 118 games gallery 3 782 783 139 games gallery 4 784 785 116 games gallery 4 722 723 99 games gallery 1 723 724 125 games gallery 4 724 725 129 games gallery 4 725 726 105 games gallery 2 726 727 115 games gallery 2 727 728 101 games gallery 3 728 729 142 games gallery 5 729 730 100 games gallery 3 733 734 121 games gallery 5 737 738 105 games gallery 4 741 742 109 games gallery 5 745 746 144 games gallery 3 753 754 118 games gallery 1 767 768 127 games gallery 1 769 770 118 games gallery 2 771 772 120 games gallery 2 772 773 108 games gallery 3 774 775 139 games gallery 3 809 810 138 games gallery 3 810 811 123 games gallery 4 811 812 120 games gallery 4 812 813 128 games gallery 2 813 814 125 games gallery 5 814 815 108 games gallery 5 815 816 111 games gallery 5 816 817 128 games gallery 3 818 819 136 games gallery 5 819 820 128 games gallery 4 820 821 120 games gallery 5 821 822 133 games gallery 4 822 823 123 games gallery 5 823 824 138 games gallery 4 824 825 128 games gallery 5 825 826 133 games gallery 5 826 827 127 games gallery 4 827 828 102 games gallery 3 828 829 1 banners image 1 829 830 2 banners image 1 831 832 1 components_page_highlights background 1 832 833 1 components_page_highlights floatImage 1 833 835 2 components_page_highlights background 1 834 836 2 components_page_highlights floatImage 1 835 834 3 components_page_highlights background 1 836 838 3 components_page_highlights floatImage 1 837 839 4 components_page_highlights background 1 838 837 4 components_page_highlights floatImage 1 839 800 124 games cover 1 840 800 124 games gallery 1 841 808 124 games gallery 2 842 809 124 games gallery 3 843 818 124 games gallery 4 862 20 1 games cover 1 863 198 1 games gallery 1 864 200 1 games gallery 2 865 207 1 games gallery 3 866 211 1 games gallery 4 867 237 1 games gallery 5 868 831 3 banners image 1 \. -- -- TOC entry 3422 (class 0 OID 549297) -- Dependencies: 273 -- Data for Name: users-permissions_permission; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public."users-permissions_permission" (id, type, controller, action, enabled, policy, role, created_by, updated_by) FROM stdin; 1 application banner count f 1 \N \N 2 application banner count f 2 \N \N 3 application banner create f 1 \N \N 4 application banner create f 2 \N \N 5 application banner delete f 1 \N \N 6 application banner delete f 2 \N \N 7 application banner find f 1 \N \N 66 application order find t 1 \N \N 9 application banner findone f 1 \N \N 10 application banner findone f 2 \N \N 11 application banner update f 1 \N \N 12 application banner update f 2 \N \N 13 application category count f 1 \N \N 14 application category count f 2 \N \N 15 application category create f 1 \N \N 16 application category create f 2 \N \N 18 application category delete f 2 \N \N 19 application category find f 1 \N \N 61 application order createpaymentintent t 1 \N \N 17 application category delete f 1 \N \N 21 application category findone f 1 \N \N 22 application category findone f 2 \N \N 23 application category update f 1 \N \N 25 application developer count f 2 \N \N 26 application developer count f 1 \N \N 24 application category update f 2 \N \N 27 application developer create f 1 \N \N 28 application developer create f 2 \N \N 29 application developer delete f 1 \N \N 30 application developer delete f 2 \N \N 31 application developer find f 1 \N \N 33 application developer findone f 1 \N \N 34 application developer findone f 2 \N \N 35 application developer update f 1 \N \N 36 application developer update f 2 \N \N 59 application order create t 1 \N \N 37 application game count f 1 \N \N 38 application game count f 2 \N \N 39 application game create f 1 \N \N 40 application game create f 2 \N \N 41 application game delete f 1 \N \N 42 application game delete f 2 \N \N 43 application game find f 1 \N \N 45 application game findone f 2 \N \N 46 application game findone f 1 \N \N 109 application wishlist findone t 1 \N \N 47 application game populate f 1 \N \N 111 application wishlist update t 1 \N \N 49 application game update f 1 \N \N 50 application game update f 2 \N \N 51 application home delete f 1 \N \N 53 application home find f 1 \N \N 55 application home update f 1 \N \N 56 application home update f 2 \N \N 52 application home delete f 2 \N \N 57 application order count f 1 \N \N 58 application order count f 2 \N \N 60 application order create f 2 \N \N 62 application order createpaymentintent f 2 \N \N 63 application order delete f 1 \N \N 65 application order find f 2 \N \N 64 application order delete f 2 \N \N 67 application order findone f 1 \N \N 68 application order findone f 2 \N \N 69 application order update f 1 \N \N 70 application order update f 2 \N \N 71 application platform count f 1 \N \N 73 application platform create f 1 \N \N 74 application platform create f 2 \N \N 75 application platform delete f 1 \N \N 76 application platform delete f 2 \N \N 72 application platform count f 2 \N \N 77 application platform find f 1 \N \N 79 application platform findone f 1 \N \N 80 application platform findone f 2 \N \N 81 application platform update f 1 \N \N 82 application platform update f 2 \N \N 83 application publisher count f 1 \N \N 85 application publisher create f 2 \N \N 86 application publisher create f 1 \N \N 84 application publisher count f 2 \N \N 87 application publisher delete f 1 \N \N 88 application publisher delete f 2 \N \N 89 application publisher find f 1 \N \N 91 application publisher findone f 1 \N \N 93 application publisher update f 1 \N \N 92 application publisher findone f 2 \N \N 101 application wishlist count f 1 \N \N 104 application wishlist create f 2 \N \N 116 content-manager collection-types create f 2 \N \N 120 content-manager collection-types find f 2 \N \N 54 application home find t 2 \N \N 78 application platform find t 2 \N \N 20 application category find t 2 \N \N 94 application publisher update f 2 \N \N 102 application wishlist count f 2 \N \N 112 application wishlist update f 2 \N \N 129 content-manager collection-types update f 1 \N \N 140 content-manager content-types findcontenttypes f 2 \N \N 150 content-manager single-types delete f 2 \N \N 159 content-manager uid generateuid f 1 \N \N 168 content-type-builder components createcomponent f 2 \N \N 178 content-type-builder connections getconnections f 2 \N \N 187 content-type-builder contenttypes updatecontenttype f 1 \N \N 197 email-designer designer gettemplates f 1 \N \N 205 email email send f 2 \N \N 213 repositories repositories index f 1 \N \N 221 upload upload count f 1 \N \N 231 upload upload search f 1 \N \N 244 users-permissions auth forgotpassword t 2 \N \N 256 users-permissions user destroy f 2 \N \N 266 users-permissions user update f 1 \N \N 274 users-permissions userspermissions getemailtemplate f 2 \N \N 282 users-permissions userspermissions getrole f 2 \N \N 292 users-permissions userspermissions updateadvancedsettings f 2 \N \N 8 application banner find t 2 \N \N 95 application recommended delete f 1 \N \N 115 content-manager collection-types create f 1 \N \N 126 content-manager collection-types publish f 1 \N \N 134 content-manager components findcomponents f 2 \N \N 142 content-manager content-types findcontenttypessettings f 2 \N \N 152 content-manager single-types find f 2 \N \N 169 content-type-builder components deletecomponent f 1 \N \N 180 content-type-builder contenttypes createcontenttype f 2 \N \N 190 email-designer config getconfig f 2 \N \N 199 email-designer designer index f 1 \N \N 208 email email test f 2 \N \N 218 sync-roles-permissions sync-roles-permissions index f 2 \N \N 227 upload upload findone f 1 \N \N 237 users-permissions auth callback f 1 \N \N 245 users-permissions auth register t 2 \N \N 253 users-permissions user create f 1 \N \N 271 users-permissions userspermissions getadvancedsettings f 1 \N \N 284 users-permissions userspermissions getroles f 2 \N \N 296 users-permissions userspermissions updateproviders f 2 \N \N 48 application game populate t 2 \N \N 103 application wishlist create t 1 \N \N 261 users-permissions user findone t 1 \N \N 96 application recommended delete f 2 \N \N 106 application wishlist delete f 1 \N \N 114 content-manager collection-types bulkdelete f 2 \N \N 122 content-manager collection-types findone f 2 \N \N 132 content-manager components findcomponentconfiguration f 2 \N \N 149 content-manager single-types delete f 1 \N \N 160 content-manager uid generateuid f 2 \N \N 170 content-type-builder components deletecomponent f 2 \N \N 179 content-type-builder contenttypes createcontenttype f 1 \N \N 188 content-type-builder contenttypes updatecontenttype f 2 \N \N 198 email-designer designer gettemplates f 2 \N \N 207 email email test f 1 \N \N 217 sync-roles-permissions sync-roles-permissions index f 1 \N \N 225 upload upload find f 2 \N \N 233 upload upload updatesettings f 1 \N \N 241 users-permissions auth emailconfirmation f 1 \N \N 251 users-permissions user count f 1 \N \N 263 users-permissions user me t 1 \N \N 275 users-permissions userspermissions getpermissions f 1 \N \N 283 users-permissions userspermissions getroles f 1 \N \N 295 users-permissions userspermissions updateproviders f 1 \N \N 44 application game find t 2 \N \N 105 application wishlist delete f 2 \N \N 113 content-manager collection-types bulkdelete f 1 \N \N 121 content-manager collection-types findone f 1 \N \N 131 content-manager components findcomponentconfiguration f 1 \N \N 144 content-manager content-types updatecontenttypeconfiguration f 2 \N \N 156 content-manager single-types unpublish f 2 \N \N 166 content-type-builder componentcategories editcategory f 1 \N \N 174 content-type-builder components getcomponents f 2 \N \N 182 content-type-builder contenttypes deletecontenttype f 2 \N \N 192 email-designer designer deletetemplate f 2 \N \N 209 entity-relationship-chart entity-relationship-chart geterdata f 1 \N \N 220 sync-roles-permissions sync-roles-permissions updateroles f 2 \N \N 230 upload upload getsettings f 2 \N \N 238 users-permissions auth callback t 2 \N \N 247 users-permissions auth resetpassword f 1 \N \N 257 users-permissions user destroyall f 1 \N \N 265 users-permissions user update f 2 \N \N 273 users-permissions userspermissions getemailtemplate f 1 \N \N 281 users-permissions userspermissions getrole f 1 \N \N 291 users-permissions userspermissions updateadvancedsettings f 1 \N \N 32 application developer find t 2 \N \N 97 application recommended find t 1 \N \N 117 content-manager collection-types delete f 1 \N \N 125 content-manager collection-types publish f 2 \N \N 133 content-manager components findcomponents f 1 \N \N 141 content-manager content-types findcontenttypessettings f 1 \N \N 151 content-manager single-types find f 1 \N \N 164 content-type-builder componentcategories deletecategory f 2 \N \N 176 content-type-builder components updatecomponent f 2 \N \N 186 content-type-builder contenttypes getcontenttypes f 1 \N \N 194 email-designer designer duplicatetemplate f 2 \N \N 202 email-designer designer savetemplate f 2 \N \N 212 entity-relationship-chart entity-relationship-chart index f 2 \N \N 229 upload upload getsettings f 1 \N \N 240 users-permissions auth connect t 2 \N \N 250 users-permissions auth sendemailconfirmation f 2 \N \N 268 users-permissions userspermissions createrole f 2 \N \N 278 users-permissions userspermissions getpolicies f 2 \N \N 287 users-permissions userspermissions index f 1 \N \N 297 users-permissions userspermissions updaterole f 1 \N \N 90 application publisher find t 2 \N \N 98 application recommended find t 2 \N \N 107 application wishlist find t 1 \N \N 259 users-permissions user find t 1 \N \N 99 application recommended update f 1 \N \N 108 application wishlist find f 2 \N \N 118 content-manager collection-types delete f 2 \N \N 127 content-manager collection-types unpublish f 1 \N \N 137 content-manager content-types findcontenttypeconfiguration f 1 \N \N 145 content-manager relations find f 2 \N \N 153 content-manager single-types publish f 1 \N \N 161 content-type-builder builder getreservednames f 1 \N \N 171 content-type-builder components getcomponent f 1 \N \N 184 content-type-builder contenttypes getcontenttype f 2 \N \N 196 email-designer designer gettemplate f 2 \N \N 206 email email send f 1 \N \N 214 repositories repositories index f 2 \N \N 222 upload upload count f 2 \N \N 232 upload upload search f 2 \N \N 249 users-permissions auth sendemailconfirmation f 1 \N \N 260 users-permissions user find f 2 \N \N 270 users-permissions userspermissions deleterole f 2 \N \N 279 users-permissions userspermissions getproviders f 1 \N \N 288 users-permissions userspermissions index f 2 \N \N 298 users-permissions userspermissions updaterole f 2 \N \N 100 application recommended update f 2 \N \N 110 application wishlist findone f 2 \N \N 119 content-manager collection-types find f 1 \N \N 128 content-manager collection-types unpublish f 2 \N \N 138 content-manager content-types findcontenttypeconfiguration f 2 \N \N 147 content-manager single-types createorupdate f 1 \N \N 157 content-manager uid checkuidavailability f 1 \N \N 165 content-type-builder componentcategories editcategory f 2 \N \N 173 content-type-builder components getcomponents f 1 \N \N 181 content-type-builder contenttypes deletecontenttype f 1 \N \N 191 email-designer designer deletetemplate f 1 \N \N 204 email email getsettings f 2 \N \N 216 sync-roles-permissions sync-roles-permissions getroles f 2 \N \N 226 upload upload find f 1 \N \N 234 upload upload updatesettings f 2 \N \N 242 users-permissions auth emailconfirmation t 2 \N \N 252 users-permissions user count f 2 \N \N 267 users-permissions userspermissions createrole f 1 \N \N 277 users-permissions userspermissions getpolicies f 1 \N \N 285 users-permissions userspermissions getroutes f 2 \N \N 293 users-permissions userspermissions updateemailtemplate f 1 \N \N 123 content-manager collection-types previewmanyrelations f 1 \N \N 135 content-manager components updatecomponentconfiguration f 1 \N \N 143 content-manager content-types updatecontenttypeconfiguration f 1 \N \N 155 content-manager single-types unpublish f 1 \N \N 163 content-type-builder componentcategories deletecategory f 1 \N \N 175 content-type-builder components updatecomponent f 1 \N \N 183 content-type-builder contenttypes getcontenttype f 1 \N \N 195 email-designer designer gettemplate f 1 \N \N 203 email email getsettings f 1 \N \N 215 sync-roles-permissions sync-roles-permissions getroles f 1 \N \N 223 upload upload destroy f 1 \N \N 235 upload upload upload f 1 \N \N 243 users-permissions auth forgotpassword f 1 \N \N 255 users-permissions user destroy f 1 \N \N 264 users-permissions user me t 2 \N \N 276 users-permissions userspermissions getpermissions f 2 \N \N 286 users-permissions userspermissions getroutes f 1 \N \N 294 users-permissions userspermissions updateemailtemplate f 2 \N \N 124 content-manager collection-types previewmanyrelations f 2 \N \N 136 content-manager components updatecomponentconfiguration f 2 \N \N 146 content-manager relations find f 1 \N \N 154 content-manager single-types publish f 2 \N \N 162 content-type-builder builder getreservednames f 2 \N \N 172 content-type-builder components getcomponent f 2 \N \N 189 email-designer config getconfig f 1 \N \N 200 email-designer designer index f 2 \N \N 210 entity-relationship-chart entity-relationship-chart geterdata f 2 \N \N 219 sync-roles-permissions sync-roles-permissions updateroles f 1 \N \N 228 upload upload findone f 2 \N \N 239 users-permissions auth connect t 1 \N \N 248 users-permissions auth resetpassword t 2 \N \N 258 users-permissions user destroyall f 2 \N \N 269 users-permissions userspermissions deleterole f 1 \N \N 280 users-permissions userspermissions getproviders f 2 \N \N 290 users-permissions userspermissions searchusers f 2 \N \N 130 content-manager collection-types update f 2 \N \N 139 content-manager content-types findcontenttypes f 1 \N \N 148 content-manager single-types createorupdate f 2 \N \N 158 content-manager uid checkuidavailability f 2 \N \N 167 content-type-builder components createcomponent f 1 \N \N 177 content-type-builder connections getconnections f 1 \N \N 185 content-type-builder contenttypes getcontenttypes f 2 \N \N 193 email-designer designer duplicatetemplate f 1 \N \N 201 email-designer designer savetemplate f 1 \N \N 211 entity-relationship-chart entity-relationship-chart index f 1 \N \N 224 upload upload destroy f 2 \N \N 246 users-permissions auth register f 1 \N \N 254 users-permissions user create f 2 \N \N 262 users-permissions user findone f 2 \N \N 272 users-permissions userspermissions getadvancedsettings f 2 \N \N 289 users-permissions userspermissions searchusers f 1 \N \N 236 upload upload upload t 2 \N \N \. -- -- TOC entry 3424 (class 0 OID 549308) -- Dependencies: 275 -- Data for Name: users-permissions_role; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public."users-permissions_role" (id, name, description, type, created_by, updated_by) FROM stdin; 2 Public Default role given to unauthenticated user. public \N \N 1 Authenticated Default role given to authenticated user. authenticated \N \N \. -- -- TOC entry 3426 (class 0 OID 549321) -- Dependencies: 277 -- Data for Name: users-permissions_user; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public."users-permissions_user" (id, username, email, provider, password, "resetPasswordToken", "confirmationToken", confirmed, blocked, role, created_by, updated_by, created_at, updated_at) FROM stdin; 1 cypress e2e@wongames.com local $2a$10$qJlzI4Xsc/W0H1lvynY/dOrtNXrd4bJTtldinMFt5SbGD6CKoO5De \N \N t f 1 1 1 2021-05-20 12:05:22.968-03 2021-05-20 12:05:22.97-03 \. -- -- TOC entry 3402 (class 0 OID 549178) -- Dependencies: 253 -- Data for Name: wishlists; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.wishlists (id, "user", created_by, updated_by, created_at, updated_at) FROM stdin; \. -- -- TOC entry 3404 (class 0 OID 549190) -- Dependencies: 255 -- Data for Name: wishlists__games; Type: TABLE DATA; Schema: public; Owner: wongames -- COPY public.wishlists__games (id, wishlist_id, game_id) FROM stdin; \. -- -- TOC entry 3471 (class 0 OID 0) -- Dependencies: 222 -- Name: banners_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.banners_components_id_seq', 3, true); -- -- TOC entry 3472 (class 0 OID 0) -- Dependencies: 220 -- Name: banners_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.banners_id_seq', 3, true); -- -- TOC entry 3473 (class 0 OID 0) -- Dependencies: 230 -- Name: categories_games__games_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.categories_games__games_categories_id_seq', 429, true); -- -- TOC entry 3474 (class 0 OID 0) -- Dependencies: 224 -- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.categories_id_seq', 38, true); -- -- TOC entry 3475 (class 0 OID 0) -- Dependencies: 204 -- Name: components_page_buttons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_buttons_id_seq', 3, true); -- -- TOC entry 3476 (class 0 OID 0) -- Dependencies: 206 -- Name: components_page_highlights_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_highlights_id_seq', 4, true); -- -- TOC entry 3477 (class 0 OID 0) -- Dependencies: 210 -- Name: components_page_popular_games__games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_popular_games__games_id_seq', 12, true); -- -- TOC entry 3478 (class 0 OID 0) -- Dependencies: 212 -- Name: components_page_popular_games_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_popular_games_components_id_seq', 2, true); -- -- TOC entry 3479 (class 0 OID 0) -- Dependencies: 208 -- Name: components_page_popular_games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_popular_games_id_seq', 2, true); -- -- TOC entry 3480 (class 0 OID 0) -- Dependencies: 214 -- Name: components_page_ribbons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_ribbons_id_seq', 1, false); -- -- TOC entry 3481 (class 0 OID 0) -- Dependencies: 218 -- Name: components_page_sections_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_sections_components_id_seq', 2, true); -- -- TOC entry 3482 (class 0 OID 0) -- Dependencies: 216 -- Name: components_page_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.components_page_sections_id_seq', 3, true); -- -- TOC entry 3483 (class 0 OID 0) -- Dependencies: 202 -- Name: core_store_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.core_store_id_seq', 53, true); -- -- TOC entry 3484 (class 0 OID 0) -- Dependencies: 232 -- Name: developers_games__games_developers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.developers_games__games_developers_id_seq', 144, true); -- -- TOC entry 3485 (class 0 OID 0) -- Dependencies: 226 -- Name: developers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.developers_id_seq', 116, true); -- -- TOC entry 3486 (class 0 OID 0) -- Dependencies: 266 -- Name: email_templates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.email_templates_id_seq', 1, true); -- -- TOC entry 3487 (class 0 OID 0) -- Dependencies: 228 -- Name: games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.games_id_seq', 144, true); -- -- TOC entry 3488 (class 0 OID 0) -- Dependencies: 234 -- Name: games_platforms__platforms_games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.games_platforms__platforms_games_id_seq', 210, true); -- -- TOC entry 3489 (class 0 OID 0) -- Dependencies: 238 -- Name: homes_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.homes_components_id_seq', 4, true); -- -- TOC entry 3490 (class 0 OID 0) -- Dependencies: 236 -- Name: homes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.homes_id_seq', 1, true); -- -- TOC entry 3491 (class 0 OID 0) -- Dependencies: 242 -- Name: orders__games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.orders__games_id_seq', 8, true); -- -- TOC entry 3492 (class 0 OID 0) -- Dependencies: 240 -- Name: orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.orders_id_seq', 8, true); -- -- TOC entry 3493 (class 0 OID 0) -- Dependencies: 244 -- Name: platforms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.platforms_id_seq', 3, true); -- -- TOC entry 3494 (class 0 OID 0) -- Dependencies: 246 -- Name: publishers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.publishers_id_seq', 98, true); -- -- TOC entry 3495 (class 0 OID 0) -- Dependencies: 250 -- Name: recommendeds_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.recommendeds_components_id_seq', 1, true); -- -- TOC entry 3496 (class 0 OID 0) -- Dependencies: 248 -- Name: recommendeds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.recommendeds_id_seq', 1, true); -- -- TOC entry 3497 (class 0 OID 0) -- Dependencies: 262 -- Name: strapi_administrator_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.strapi_administrator_id_seq', 1, true); -- -- TOC entry 3498 (class 0 OID 0) -- Dependencies: 258 -- Name: strapi_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.strapi_permission_id_seq', 256, true); -- -- TOC entry 3499 (class 0 OID 0) -- Dependencies: 260 -- Name: strapi_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.strapi_role_id_seq', 3, true); -- -- TOC entry 3500 (class 0 OID 0) -- Dependencies: 264 -- Name: strapi_users_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.strapi_users_roles_id_seq', 1, true); -- -- TOC entry 3501 (class 0 OID 0) -- Dependencies: 256 -- Name: strapi_webhooks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.strapi_webhooks_id_seq', 1, false); -- -- TOC entry 3502 (class 0 OID 0) -- Dependencies: 268 -- Name: upload_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.upload_file_id_seq', 839, true); -- -- TOC entry 3503 (class 0 OID 0) -- Dependencies: 270 -- Name: upload_file_morph_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.upload_file_morph_id_seq', 868, true); -- -- TOC entry 3504 (class 0 OID 0) -- Dependencies: 272 -- Name: users-permissions_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public."users-permissions_permission_id_seq"', 298, true); -- -- TOC entry 3505 (class 0 OID 0) -- Dependencies: 274 -- Name: users-permissions_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public."users-permissions_role_id_seq"', 2, true); -- -- TOC entry 3506 (class 0 OID 0) -- Dependencies: 276 -- Name: users-permissions_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public."users-permissions_user_id_seq"', 13, true); -- -- TOC entry 3507 (class 0 OID 0) -- Dependencies: 254 -- Name: wishlists__games_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.wishlists__games_id_seq', 4, true); -- -- TOC entry 3508 (class 0 OID 0) -- Dependencies: 252 -- Name: wishlists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: wongames -- SELECT pg_catalog.setval('public.wishlists_id_seq', 2, true); -- -- TOC entry 3133 (class 2606 OID 548988) -- Name: banners_components banners_components_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.banners_components ADD CONSTRAINT banners_components_pkey PRIMARY KEY (id); -- -- TOC entry 3131 (class 2606 OID 548977) -- Name: banners banners_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.banners ADD CONSTRAINT banners_pkey PRIMARY KEY (id); -- -- TOC entry 3153 (class 2606 OID 549052) -- Name: categories_games__games_categories categories_games__games_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories_games__games_categories ADD CONSTRAINT categories_games__games_categories_pkey PRIMARY KEY (id); -- -- TOC entry 3135 (class 2606 OID 549008) -- Name: categories categories_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories ADD CONSTRAINT categories_name_unique UNIQUE (name); -- -- TOC entry 3137 (class 2606 OID 549006) -- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories ADD CONSTRAINT categories_pkey PRIMARY KEY (id); -- -- TOC entry 3139 (class 2606 OID 549010) -- Name: categories categories_slug_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.categories ADD CONSTRAINT categories_slug_unique UNIQUE (slug); -- -- TOC entry 3115 (class 2606 OID 548886) -- Name: components_page_buttons components_page_buttons_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_buttons ADD CONSTRAINT components_page_buttons_pkey PRIMARY KEY (id); -- -- TOC entry 3117 (class 2606 OID 548897) -- Name: components_page_highlights components_page_highlights_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_highlights ADD CONSTRAINT components_page_highlights_pkey PRIMARY KEY (id); -- -- TOC entry 3121 (class 2606 OID 548913) -- Name: components_page_popular_games__games components_page_popular_games__games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games__games ADD CONSTRAINT components_page_popular_games__games_pkey PRIMARY KEY (id); -- -- TOC entry 3123 (class 2606 OID 548924) -- Name: components_page_popular_games_components components_page_popular_games_components_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games_components ADD CONSTRAINT components_page_popular_games_components_pkey PRIMARY KEY (id); -- -- TOC entry 3119 (class 2606 OID 548905) -- Name: components_page_popular_games components_page_popular_games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games ADD CONSTRAINT components_page_popular_games_pkey PRIMARY KEY (id); -- -- TOC entry 3125 (class 2606 OID 548940) -- Name: components_page_ribbons components_page_ribbons_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_ribbons ADD CONSTRAINT components_page_ribbons_pkey PRIMARY KEY (id); -- -- TOC entry 3129 (class 2606 OID 548959) -- Name: components_page_sections_components components_page_sections_components_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_sections_components ADD CONSTRAINT components_page_sections_components_pkey PRIMARY KEY (id); -- -- TOC entry 3127 (class 2606 OID 548948) -- Name: components_page_sections components_page_sections_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_sections ADD CONSTRAINT components_page_sections_pkey PRIMARY KEY (id); -- -- TOC entry 3113 (class 2606 OID 548875) -- Name: core_store core_store_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.core_store ADD CONSTRAINT core_store_pkey PRIMARY KEY (id); -- -- TOC entry 3155 (class 2606 OID 549060) -- Name: developers_games__games_developers developers_games__games_developers_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers_games__games_developers ADD CONSTRAINT developers_games__games_developers_pkey PRIMARY KEY (id); -- -- TOC entry 3141 (class 2606 OID 549025) -- Name: developers developers_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers ADD CONSTRAINT developers_name_unique UNIQUE (name); -- -- TOC entry 3143 (class 2606 OID 549023) -- Name: developers developers_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers ADD CONSTRAINT developers_pkey PRIMARY KEY (id); -- -- TOC entry 3145 (class 2606 OID 549027) -- Name: developers developers_slug_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.developers ADD CONSTRAINT developers_slug_unique UNIQUE (slug); -- -- TOC entry 3205 (class 2606 OID 549270) -- Name: email_templates email_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.email_templates ADD CONSTRAINT email_templates_pkey PRIMARY KEY (id); -- -- TOC entry 3147 (class 2606 OID 549042) -- Name: games games_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games ADD CONSTRAINT games_name_unique UNIQUE (name); -- -- TOC entry 3149 (class 2606 OID 549040) -- Name: games games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games ADD CONSTRAINT games_pkey PRIMARY KEY (id); -- -- TOC entry 3157 (class 2606 OID 549068) -- Name: games_platforms__platforms_games games_platforms__platforms_games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games_platforms__platforms_games ADD CONSTRAINT games_platforms__platforms_games_pkey PRIMARY KEY (id); -- -- TOC entry 3151 (class 2606 OID 549044) -- Name: games games_slug_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.games ADD CONSTRAINT games_slug_unique UNIQUE (slug); -- -- TOC entry 3161 (class 2606 OID 549089) -- Name: homes_components homes_components_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.homes_components ADD CONSTRAINT homes_components_pkey PRIMARY KEY (id); -- -- TOC entry 3159 (class 2606 OID 549078) -- Name: homes homes_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.homes ADD CONSTRAINT homes_pkey PRIMARY KEY (id); -- -- TOC entry 3165 (class 2606 OID 549115) -- Name: orders__games orders__games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.orders__games ADD CONSTRAINT orders__games_pkey PRIMARY KEY (id); -- -- TOC entry 3163 (class 2606 OID 549107) -- Name: orders orders_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.orders ADD CONSTRAINT orders_pkey PRIMARY KEY (id); -- -- TOC entry 3167 (class 2606 OID 549130) -- Name: platforms platforms_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.platforms ADD CONSTRAINT platforms_name_unique UNIQUE (name); -- -- TOC entry 3169 (class 2606 OID 549128) -- Name: platforms platforms_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.platforms ADD CONSTRAINT platforms_pkey PRIMARY KEY (id); -- -- TOC entry 3171 (class 2606 OID 549132) -- Name: platforms platforms_slug_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.platforms ADD CONSTRAINT platforms_slug_unique UNIQUE (slug); -- -- TOC entry 3173 (class 2606 OID 549147) -- Name: publishers publishers_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.publishers ADD CONSTRAINT publishers_name_unique UNIQUE (name); -- -- TOC entry 3175 (class 2606 OID 549145) -- Name: publishers publishers_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.publishers ADD CONSTRAINT publishers_pkey PRIMARY KEY (id); -- -- TOC entry 3177 (class 2606 OID 549149) -- Name: publishers publishers_slug_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.publishers ADD CONSTRAINT publishers_slug_unique UNIQUE (slug); -- -- TOC entry 3181 (class 2606 OID 549170) -- Name: recommendeds_components recommendeds_components_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.recommendeds_components ADD CONSTRAINT recommendeds_components_pkey PRIMARY KEY (id); -- -- TOC entry 3179 (class 2606 OID 549159) -- Name: recommendeds recommendeds_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.recommendeds ADD CONSTRAINT recommendeds_pkey PRIMARY KEY (id); -- -- TOC entry 3199 (class 2606 OID 549249) -- Name: strapi_administrator strapi_administrator_email_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_administrator ADD CONSTRAINT strapi_administrator_email_unique UNIQUE (email); -- -- TOC entry 3201 (class 2606 OID 549247) -- Name: strapi_administrator strapi_administrator_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_administrator ADD CONSTRAINT strapi_administrator_pkey PRIMARY KEY (id); -- -- TOC entry 3191 (class 2606 OID 549219) -- Name: strapi_permission strapi_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_permission ADD CONSTRAINT strapi_permission_pkey PRIMARY KEY (id); -- -- TOC entry 3193 (class 2606 OID 549236) -- Name: strapi_role strapi_role_code_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_role ADD CONSTRAINT strapi_role_code_unique UNIQUE (code); -- -- TOC entry 3195 (class 2606 OID 549234) -- Name: strapi_role strapi_role_name_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_role ADD CONSTRAINT strapi_role_name_unique UNIQUE (name); -- -- TOC entry 3197 (class 2606 OID 549232) -- Name: strapi_role strapi_role_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_role ADD CONSTRAINT strapi_role_pkey PRIMARY KEY (id); -- -- TOC entry 3203 (class 2606 OID 549257) -- Name: strapi_users_roles strapi_users_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_users_roles ADD CONSTRAINT strapi_users_roles_pkey PRIMARY KEY (id); -- -- TOC entry 3189 (class 2606 OID 549206) -- Name: strapi_webhooks strapi_webhooks_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.strapi_webhooks ADD CONSTRAINT strapi_webhooks_pkey PRIMARY KEY (id); -- -- TOC entry 3209 (class 2606 OID 549294) -- Name: upload_file_morph upload_file_morph_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.upload_file_morph ADD CONSTRAINT upload_file_morph_pkey PRIMARY KEY (id); -- -- TOC entry 3207 (class 2606 OID 549283) -- Name: upload_file upload_file_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.upload_file ADD CONSTRAINT upload_file_pkey PRIMARY KEY (id); -- -- TOC entry 3211 (class 2606 OID 549305) -- Name: users-permissions_permission users-permissions_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_permission" ADD CONSTRAINT "users-permissions_permission_pkey" PRIMARY KEY (id); -- -- TOC entry 3213 (class 2606 OID 549316) -- Name: users-permissions_role users-permissions_role_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_role" ADD CONSTRAINT "users-permissions_role_pkey" PRIMARY KEY (id); -- -- TOC entry 3215 (class 2606 OID 549318) -- Name: users-permissions_role users-permissions_role_type_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_role" ADD CONSTRAINT "users-permissions_role_type_unique" UNIQUE (type); -- -- TOC entry 3217 (class 2606 OID 549331) -- Name: users-permissions_user users-permissions_user_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_user" ADD CONSTRAINT "users-permissions_user_pkey" PRIMARY KEY (id); -- -- TOC entry 3219 (class 2606 OID 549333) -- Name: users-permissions_user users-permissions_user_username_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public."users-permissions_user" ADD CONSTRAINT "users-permissions_user_username_unique" UNIQUE (username); -- -- TOC entry 3187 (class 2606 OID 549195) -- Name: wishlists__games wishlists__games_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.wishlists__games ADD CONSTRAINT wishlists__games_pkey PRIMARY KEY (id); -- -- TOC entry 3183 (class 2606 OID 549185) -- Name: wishlists wishlists_pkey; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.wishlists ADD CONSTRAINT wishlists_pkey PRIMARY KEY (id); -- -- TOC entry 3185 (class 2606 OID 549187) -- Name: wishlists wishlists_user_unique; Type: CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.wishlists ADD CONSTRAINT wishlists_user_unique UNIQUE ("user"); -- -- TOC entry 3222 (class 2606 OID 548989) -- Name: banners_components banner_id_fk; Type: FK CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.banners_components ADD CONSTRAINT banner_id_fk FOREIGN KEY (banner_id) REFERENCES public.banners(id) ON DELETE CASCADE; -- -- TOC entry 3220 (class 2606 OID 548925) -- Name: components_page_popular_games_components components_page_popular_game_id_fk; Type: FK CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_popular_games_components ADD CONSTRAINT components_page_popular_game_id_fk FOREIGN KEY (components_page_popular_game_id) REFERENCES public.components_page_popular_games(id) ON DELETE CASCADE; -- -- TOC entry 3221 (class 2606 OID 548960) -- Name: components_page_sections_components components_page_section_id_fk; Type: FK CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.components_page_sections_components ADD CONSTRAINT components_page_section_id_fk FOREIGN KEY (components_page_section_id) REFERENCES public.components_page_sections(id) ON DELETE CASCADE; -- -- TOC entry 3223 (class 2606 OID 549090) -- Name: homes_components home_id_fk; Type: FK CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.homes_components ADD CONSTRAINT home_id_fk FOREIGN KEY (home_id) REFERENCES public.homes(id) ON DELETE CASCADE; -- -- TOC entry 3224 (class 2606 OID 549171) -- Name: recommendeds_components recommended_id_fk; Type: FK CONSTRAINT; Schema: public; Owner: wongames -- ALTER TABLE ONLY public.recommendeds_components ADD CONSTRAINT recommended_id_fk FOREIGN KEY (recommended_id) REFERENCES public.recommendeds(id) ON DELETE CASCADE; -- Completed on 2021-05-20 13:26:42 -03 -- -- PostgreSQL database dump complete --